Skip to content

Commit

Permalink
Increase Celery Chord Unlock Max Retries
Browse files Browse the repository at this point in the history
In some cases, having multiple workers exhausts this limit quicker
than anticipated. The setting exists purely to protect against an
infinite loop, so having a slightly larger limit will not affect
performance.
  • Loading branch information
rajadain committed Jun 29, 2016
1 parent 83bf089 commit 0835021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmw/mmw/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get_env_setting(setting):
CELERY_WORKER_DIRECT = True
CELERY_CREATE_MISSING_QUEUES = True
CELERY_CHORD_PROPAGATES = True
CELERY_CHORD_UNLOCK_MAX_RETRIES = 20
CELERY_CHORD_UNLOCK_MAX_RETRIES = 60
# END CELERY CONFIGURATION


Expand Down

0 comments on commit 0835021

Please sign in to comment.