From cffc984ef6e38dfc83c062ef87d1209afe058b9d Mon Sep 17 00:00:00 2001 From: Kyle Killion Date: Mon, 28 Mar 2022 23:13:07 -0700 Subject: [PATCH] chore: Add active_storage_purge queue to Sidekiq (#4322) I found that these jobs were just enqueuing without processing until I added this queue after switching to S3 storage. This fixed that issue. --- config/sidekiq.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/sidekiq.yml b/config/sidekiq.yml index 2c6d89933..e83ddf8f0 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -18,6 +18,7 @@ - [bots, 1] - [active_storage_analysis, 1] - [action_mailbox_incineration, 1] + - [active_storage_purge, 1] - [integrations, 2] - [default, 2] - [mailers, 2]