diff options
author | Corentin Chary <corentin.chary@gmail.com> | 2012-11-26 23:39:11 +0100 |
---|---|---|
committer | Corentin Chary <corentin.chary@gmail.com> | 2012-11-26 23:39:11 +0100 |
commit | a723d30a33d8de7c8d991bbfcad0518f25e5d8a5 (patch) | |
tree | 96cbb2a0fce034e27e371e96290fb9079de87910 | |
parent | euscanwww: Fixing metadata and ebuild urls (diff) | |
download | euscan-a723d30a33d8de7c8d991bbfcad0518f25e5d8a5.tar.gz euscan-a723d30a33d8de7c8d991bbfcad0518f25e5d8a5.tar.bz2 euscan-a723d30a33d8de7c8d991bbfcad0518f25e5d8a5.zip |
euscanwww: reorder some settings
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
-rw-r--r-- | euscanwww/euscanwww/settings.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/euscanwww/euscanwww/settings.py b/euscanwww/euscanwww/settings.py index 5322b3c..814e907 100644 --- a/euscanwww/euscanwww/settings.py +++ b/euscanwww/euscanwww/settings.py @@ -237,15 +237,14 @@ EGENCACHE_JOBS = 4 import djcelery djcelery.setup_loader() BROKER_URL = "amqp://guest:guest@localhost:5672//" -CELERY_RESULT_BACKEND = "amqp" BROKER_CONNECTION_TIMEOUT = 3600 +CELERY_RESULT_BACKEND = "amqp" CELERYD_CONCURRENCY = 4 +CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler" TASKS_UPSTREAM_GROUPS = 32 TASKS_EMAIL_GROUPS = 10 -CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler" - # LDAP authentication # TODO: Test data - change me! AUTH_LDAP_SERVER_URI = "ldap://localhost" |