Skip to content

Commit

Permalink
#4342 use threaded mode until subprocess mode is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 9, 2024
1 parent b6889a3 commit 3b33ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/proxy/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
STOP_PROXY_SOCKET_TYPES = os.environ.get("XPRA_STOP_PROXY_SOCKET_TYPES", "socket,named-pipe").split(",")
STOP_PROXY_AUTH_SOCKET_TYPES = os.environ.get("XPRA_STOP_PROXY_AUTH_SOCKET_TYPES", "socket").split(",")
# something (a thread lock?) doesn't allow us to use multiprocessing on MS Windows:
PROXY_INSTANCE_THREADED = envbool("XPRA_PROXY_INSTANCE_THREADED", WIN32)
PROXY_INSTANCE_THREADED = envbool("XPRA_PROXY_INSTANCE_THREADED", True)
PROXY_CLEANUP_GRACE_PERIOD = envfloat("XPRA_PROXY_CLEANUP_GRACE_PERIOD", 0.5)

MAX_CONCURRENT_CONNECTIONS = envint("XPRA_PROXY_MAX_CONCURRENT_CONNECTIONS", 200)
Expand Down

0 comments on commit 3b33ba6

Please sign in to comment.