From 6e26e38326f8ea426af5b9fb26153140902940f5 Mon Sep 17 00:00:00 2001 From: Stephan Porada Date: Wed, 10 Jun 2020 09:39:16 +0200 Subject: [PATCH] Add True as default if NOPAQUE_EXECUTE_NOTIFICATIONS is not set --- daemon/nopaqued.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/nopaqued.py b/daemon/nopaqued.py index 25be4ca5..9ec1bf5a 100644 --- a/daemon/nopaqued.py +++ b/daemon/nopaqued.py @@ -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: