From 968aa39a9ede88966ecc0d5a5a36611eee573b48 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Wed, 7 May 2025 13:01:58 +0530 Subject: [PATCH] chore: move stalecontacts job to different sidekiq queue (#11427) - move stale contacts job to `housekeeping` queue below `low` --- config/schedule.yml | 2 +- config/sidekiq.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/schedule.yml b/config/schedule.yml index afb9d98c7..2747910ad 100644 --- a/config/schedule.yml +++ b/config/schedule.yml @@ -38,4 +38,4 @@ remove_stale_redis_keys_job.rb: process_stale_contacts_job: cron: '30 04 * * *' class: 'Internal::ProcessStaleContactsJob' - queue: scheduled_jobs + queue: housekeeping diff --git a/config/sidekiq.yml b/config/sidekiq.yml index 4d2abed9c..af813d92a 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -23,6 +23,7 @@ - action_mailbox_routing - low - scheduled_jobs + - housekeeping - async_database_migration - active_storage_analysis - active_storage_purge