From a2bbbad6c76ec372b91552cde04be0c84f470b0e Mon Sep 17 00:00:00 2001 From: Gregorius Marco Date: Fri, 26 Aug 2022 15:28:55 +0800 Subject: [PATCH] Set default Sidekiq queues to default,mailers --- gitlab-sidekiq/scripts/process-wrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab-sidekiq/scripts/process-wrapper b/gitlab-sidekiq/scripts/process-wrapper index c957e9a17..f37f7d7dd 100755 --- a/gitlab-sidekiq/scripts/process-wrapper +++ b/gitlab-sidekiq/scripts/process-wrapper @@ -18,7 +18,7 @@ if [ -n "${SIDEKIQ_NEGATE_QUEUES}" ]; then queues="${SIDEKIQ_NEGATE_QUEUES}" negate_flag='--negate' else - queues="${SIDEKIQ_QUEUES:-*}" + queues="${SIDEKIQ_QUEUES:-default,mailers}" negate_flag='' fi -- GitLab