From 3bb073d80b79ab71df1e9dee754a849f4bc48d87 Mon Sep 17 00:00:00 2001 From: Gareth George Date: Mon, 25 Dec 2023 08:14:00 +0000 Subject: [PATCH] fix: stats task priority --- internal/orchestrator/orchestrator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/orchestrator/orchestrator.go b/internal/orchestrator/orchestrator.go index 93b25af9..36eca249 100644 --- a/internal/orchestrator/orchestrator.go +++ b/internal/orchestrator/orchestrator.go @@ -27,7 +27,7 @@ const ( TaskPriorityIndexSnapshots = 101 TaskPriorityForget = 102 TaskPriorityPrune = 103 - TaskPriorityStats = 104 + TaskPriorityStats = -1 // very low priority. ) // Orchestrator is responsible for managing repos and backups.