From 0217b8f8616d864d28e98c8435c36dc536ae176b Mon Sep 17 00:00:00 2001 From: Matthew Bender Date: Fri, 28 Nov 2014 00:09:43 -0700 Subject: [PATCH] remove unused queues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - search_sync is staying around for now, because of how job uniqueness is implemented - seems like a good idea to also keep ‘default’ around even though no worker/job uses it. It is the default queue that sidekiq uses. So just a smart move to keep it around? - remove all other unused queues --- config/sidekiq.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/config/sidekiq.yml b/config/sidekiq.yml index aa0de469..baeaedc7 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -8,18 +8,13 @@ production: - [event_tracker, 5] - [index, 4] - [timeline, 3] + - [search_sync, 2] - [user, 2] - [data_cleanup, 1] + - [default, 1] - [event_publisher, 1] - [github, 1] - [mailer, 1] - [network, 1] - [protip, 1] - [team, 1] - - [low, 1] - - [default, 2] - - [search_sync, 2] - - [medium, 3] - - [high, 4] - - [urgent, 5] - - [critical, 6]