thread names to aid debugging

This commit is contained in:
Jakob Ketterl
2020-08-14 20:22:25 +02:00
parent 7e5ea6e065
commit 0030c6d656
7 changed files with 8 additions and 8 deletions

View File

@ -48,7 +48,7 @@ class Client(ABC):
# unset the queue object to free shared memory file descriptors
self.multithreadingQueue = None
threading.Thread(target=mp_passthru).start()
threading.Thread(target=mp_passthru, name="connection_mp_passthru").start()
def send(self, data):
try: