Add script csv gen
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
assigned to @mancini
131 132 'PAGE_SIZE': 100 132 133 } 133 134 134 ATDB_HOST = os.environ.get('ATDB_HOST', 'http://localhost:8000/atdb/') 135 # Recommended to use an environment variable to set the broker URL. 136 CELERY_BROKER_URL = os.getenv("CELERY_BROKER_URL", "amqp://guest@localhost:5672") 137 138 USW_WORKERS = ['lofardata.workers.query.Echo'] changed this line in version 2 of the diff
- ldvspec/ldvspec/celery.py 0 → 100644
1 import os 2 3 from celery import Celery 4 5 # Set the default Django settings module for the 'celery' program. 6 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ldvspec.settings.dev") why does this point to the 'dev' settings? shouldn't it point to the production settings? ('ldvspec.settings.docker_sdc')
Edited by Nico Vermaas
added 3 commits
mentioned in commit 187b786a
mentioned in commit 6181146d
Please register or sign in to reply