From 1fbecbec58c462013821af15b6b484d097e7f3a8 Mon Sep 17 00:00:00 2001 From: Gui Heise Date: Mon, 21 Feb 2022 13:19:25 -0500 Subject: [PATCH] Worker low priority --- worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.py b/worker.py index d7e0e10..7842a8a 100644 --- a/worker.py +++ b/worker.py @@ -32,7 +32,7 @@ dramatiq.actor( inspect_many_blocks_task, queue_name=LOW_PRIORITY_QUEUE, priority=LOW_PRIORITY ) dramatiq.actor( - backfill_export_task, queue_name=LOW_PRIORITY_QUEUE, priority=HIGH_PRIORITY_QUEUE + backfill_export_task, queue_name=LOW_PRIORITY_QUEUE, priority=LOW_PRIORITY_QUEUE ) dramatiq.actor( realtime_export_task, queue_name=HIGH_PRIORITY_QUEUE, priority=HIGH_PRIORITY