Fixed socket thread not exiting properly.

This commit is contained in:
2021-07-27 15:11:33 +02:00
parent bcfe4808c0
commit 38f3793c27
+1 -1
View File
@@ -125,7 +125,7 @@ class ClientConnectionThread(Thread):
class SocketInterfaceThread(Thread):
def __init__(self):
Thread.__init__(self)
Thread.__init__(self, daemon=True)
self.server_socket = None
# Can throw exception, which should be passed on to the instantiator of this class