We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f48d50 commit c987711Copy full SHA for c987711
1 file changed
thales_remote/connection.py
@@ -304,7 +304,9 @@ def _startTelegramListener(self) -> None:
304
starts the thread handling the asyncronously incoming data
305
"""
306
self._receiving_worker_is_running = True
307
- self._receiving_worker = threading.Thread(target=self._telegramListenerJob)
+ self._receiving_worker = threading.Thread(
308
+ target=self._telegramListenerJob, daemon=True
309
+ )
310
self._receiving_worker.start()
311
return
312
0 commit comments