From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 8 Jun 2023 22:05:36 +0000 (-0700) Subject: Silence a warning about setting this by setting it X-Git-Tag: v1.16.0~1^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3ea5dd13c0c4044f3b04d516f9965ad0d5ff508;p=thirdparty%2Fpaperless-ngx.git Silence a warning about setting this by setting it --- diff --git a/src/paperless/settings.py b/src/paperless/settings.py index d3c239b433..f48f208f21 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -662,6 +662,7 @@ CELERY_WORKER_MAX_TASKS_PER_CHILD = 1 CELERY_WORKER_SEND_TASK_EVENTS = True CELERY_TASK_SEND_SENT_EVENT = True CELERY_SEND_TASK_SENT_EVENT = True +CELERY_BROKER_CONNECTION_RETRY = True CELERY_TASK_TRACK_STARTED = True CELERY_TASK_TIME_LIMIT: Final[int] = __get_int("PAPERLESS_WORKER_TIMEOUT", 1800)