From 692fd73512be1330777871ea1cd52b7eaf15c3e2 Mon Sep 17 00:00:00 2001 From: Rosa Gutierrez Date: Mon, 9 Feb 2026 13:14:00 +0100 Subject: [PATCH] Run only Solid Queue's maintenance tasks in staging And not all production tasks, because that causes unexpected side effects such as cards being auto-postponed and firing webhooks configured to trigger on that event. --- config/recurring.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/recurring.yml b/config/recurring.yml index 209d8fed4..f1c1216dc 100644 --- a/config/recurring.yml +++ b/config/recurring.yml @@ -41,11 +41,11 @@ production: &production schedule: every 60 seconds <% end %> -beta: +beta: &beta # Only Solid Queue maintenance clear_solid_queue_finished_jobs: command: "SolidQueue::Job.clear_finished_in_batches(sleep_between_batches: 0.3)" schedule: every hour at minute 12 -staging: *production +staging: *beta development: *production