Skip to content

Commit 3dc4610

Browse files
committed
make reporting thread daemon
1 parent 37f2a44 commit 3dc4610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aikido_zen/background_process/aikido_background_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self, address, key):
4141
self.queue = Queue()
4242
self.connection_manager = None
4343
# Start reporting thread :
44-
Thread(target=self.reporting_thread).start()
44+
Thread(target=self.reporting_thread, daemon=True).start()
4545

4646
logger.debug(
4747
"Background process started successfully, with UDS File : %s", address

0 commit comments

Comments
 (0)