Skip to content

Commit

Permalink
never wait for input in a subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Mar 12, 2024
1 parent ed3f514 commit 0a3d58a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/net/subprocess_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ def get_env(self) -> dict[str, str]:
env = exec_env()
env["XPRA_LOG_PREFIX"] = "%s " % self.description
env["XPRA_FIX_UNICODE_OUT"] = "0"
# MS Windows wrappers should never wait for input:
env["XPRA_WAIT_FOR_INPUT"] = "0"
return env

def cleanup(self) -> None:
Expand Down

0 comments on commit 0a3d58a

Please sign in to comment.