mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-12 09:00:40 +00:00
Put execute_flag into enviroment file
This commit is contained in:
@ -2,6 +2,7 @@ from concurrent.futures import ThreadPoolExecutor
|
||||
from tasks.check_corpora import check_corpora
|
||||
from tasks.check_jobs import check_jobs
|
||||
from tasks.notify import notify
|
||||
import os
|
||||
|
||||
|
||||
# TODO: Check if thread is still alive and execute next thread after that
|
||||
@ -9,13 +10,15 @@ from tasks.notify import notify
|
||||
|
||||
|
||||
def nopaqued():
|
||||
execute_notifications = os.environ.get('NOPAQUE_EXECUTE_NOTIFICATIONS')
|
||||
# executing background functions
|
||||
while True:
|
||||
with ThreadPoolExecutor(max_workers=3) as executor:
|
||||
executor.submit(check_jobs)
|
||||
executor.submit(check_corpora)
|
||||
executor.submit(notify, True) # If True mails are sent.
|
||||
# If False no mails are sent.
|
||||
executor.submit(notify, execute_notifications)
|
||||
# If execute_notifications True mails are sent.
|
||||
# If execute_notifications False no mails are sent.
|
||||
# But notification status will be set nonetheless.
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user