Skip to content

Commit

Permalink
Merge pull request #1435 from GSA/notify-api-1431
Browse files Browse the repository at this point in the history
Change max tasks per celery worker to 500
  • Loading branch information
stvnrlly authored Nov 25, 2024
2 parents 3af7fd0 + c8f2f7c commit 76e63ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class Config(object):
current_minute = (datetime.now().minute + 1) % 60

CELERY = {
"worker_max_tasks_per_child": 200,
"worker_max_tasks_per_child": 500,
"broker_url": REDIS_URL,
"broker_transport_options": {
"visibility_timeout": 310,
Expand Down

0 comments on commit 76e63ac

Please sign in to comment.