diff --git a/bin/straxer b/bin/straxer index 113f1ff9b..f796b17fd 100644 --- a/bin/straxer +++ b/bin/straxer @@ -334,7 +334,8 @@ def start_alive_thread(log, print_timeout): from threading import Thread thread = Thread(name='Ping alive', target=print_is_alive, - args=(log, print_timeout)) + args=(log, print_timeout), + daemon=True) log.info(f'Starting thread to ping that we are still running') thread.start()