From 06ab2aaaef63c27c65e527a6c1e5750c824b489a Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Tue, 27 Dec 2022 18:00:04 +0100 Subject: [PATCH] Set max jobs to 4 --- 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 07aad87..82d20ae 100644 --- a/src/core/setup_arq.py +++ b/src/core/setup_arq.py @@ -27,6 +27,6 @@ class WorkerSettings: on_startup = startup on_shutdown = shutdown redis_settings = get_redis_settings() - max_jobs = 2 + max_jobs = 4 max_tries = 3 job_timeout = 10 * 60