Skip to content
Snippets Groups Projects
Commit 6e26e383 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Add True as default if NOPAQUE_EXECUTE_NOTIFICATIONS is not set

parent 84319681
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ import os
def nopaqued():
execute_notifications = bool(os.environ.get('NOPAQUE_EXECUTE_NOTIFICATIONS')) # noqa
execute_notifications = bool(os.environ.get('NOPAQUE_EXECUTE_NOTIFICATIONS', True)) # noqa
# executing background functions
while True:
with ThreadPoolExecutor(max_workers=3) as executor:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment