Merge pull request #1435 from GSA/notify-api-1431

Change max tasks per celery worker to 500
This commit is contained in:
Steven Reilly
2024-11-25 11:22:24 -05:00
committed by GitHub

View File

@@ -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,