diff --git a/plugins/platforms/raft/adapter.py b/plugins/platforms/raft/adapter.py index d0f03d56316..5623cef0e5e 100644 --- a/plugins/platforms/raft/adapter.py +++ b/plugins/platforms/raft/adapter.py @@ -533,7 +533,9 @@ class RaftAdapter(BasePlatformAdapter): ] env = {**os.environ, "RAFT_CHANNEL_TOKEN": self._bridge_token} try: - self._bridge_process = subprocess.Popen(cmd, env=env) + self._bridge_process = subprocess.Popen( + cmd, env=env, stdin=subprocess.DEVNULL + ) logger.info("[raft] Spawned bridge pid=%d profile=%s endpoint=%s", self._bridge_process.pid, profile, endpoint) except Exception: logger.exception("[raft] Failed to spawn bridge")