From 529a2ba4b0c57d37ee017495f5c23fbdecfb617f Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Mon, 27 Jun 2022 17:39:06 +0300 Subject: [PATCH] Update retry count --- src/core/setup_arq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/setup_arq.py b/src/core/setup_arq.py index 5b7134a..f34ec11 100644 --- a/src/core/setup_arq.py +++ b/src/core/setup_arq.py @@ -24,6 +24,6 @@ class WorkerSettings: on_shutdown = shutdown redis_settings = get_redis_settings() max_jobs = 2 - max_tries = 10 + max_tries = 20 job_timeout = 5 * 60 cron_jobs = [cron(run_fl_update, hour={5}, minute=0)]