From 7994706bdbd492b6e5d7b749dcdc03afdf920d1f Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 2 Aug 2021 19:00:26 +0530 Subject: [PATCH] fix: remove unused queue Removed because causes unnecessary confusion. A queue called "background" never existed it was commited by mistake while developing a feature but that feature ended up not using it. reference commit: https://github.com/frappe/frappe/commit/e6adf91029feaaf6fa1c02cbd43ae38262784a2b reference PR: https://github.com/frappe/erpnext/pull/26701 --- frappe/utils/background_jobs.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/utils/background_jobs.py b/frappe/utils/background_jobs.py index f0bd06aff4..567268f760 100755 --- a/frappe/utils/background_jobs.py +++ b/frappe/utils/background_jobs.py @@ -20,7 +20,6 @@ from frappe.utils.commands import log default_timeout = 300 queue_timeout = { - 'background': 2500, 'long': 1500, 'default': 300, 'short': 300