From a6077a61b40bfcf5fd09f82478c2fc4535df1a44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Wed, 13 May 2020 13:32:16 +0200 Subject: [PATCH] fixed x2go app closing too early --- actors/src/udsactor/ipc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actors/src/udsactor/ipc.py b/actors/src/udsactor/ipc.py index 509449a0e..0856fd196 100644 --- a/actors/src/udsactor/ipc.py +++ b/actors/src/udsactor/ipc.py @@ -132,7 +132,7 @@ class ClientProcessor(threading.Thread): if b == b'': # Client disconnected self.running = False - self.processRequest(REQ_LOGOUT, 'CLIENT_CONNECTION_LOST') + # self.processRequest(REQ_LOGOUT, 'CLIENT_CONNECTION_LOST') break buf = six.byte2int(b) # Empty buffer, this is set as non-blocking if state is None: