Private
Public Access
1
0

fixed RQ issue - bg tasks now working on linux notebook

This commit is contained in:
Sander Roosendaal
2019-02-17 14:30:29 +01:00
parent 158a1e7956
commit f70b1a7ce5
6 changed files with 124 additions and 6 deletions

View File

@@ -467,3 +467,9 @@ try:
OPAQUE_SECRET_KEY = CFG['opaque_secret_key']
except KeyError:
OPAQUE_SECRET_KEY = 0xa193443a
# Celery or RQ
try:
CELERY = CFG['use_celery']
except KeyError:
CELERY = False