From 77957e07cf1992a807fab56dc5304a63e59e61d8 Mon Sep 17 00:00:00 2001 From: Gui Heise Date: Mon, 28 Feb 2022 13:13:16 -0500 Subject: [PATCH] Fix priority --- worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.py b/worker.py index 7842a8a..83c74d9 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=LOW_PRIORITY_QUEUE + backfill_export_task, queue_name=LOW_PRIORITY_QUEUE, priority=LOW_PRIORITY ) dramatiq.actor( realtime_export_task, queue_name=HIGH_PRIORITY_QUEUE, priority=HIGH_PRIORITY