Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-06-01 01:06:08 +0300
committerStan Hu <stanhu@gmail.com>2016-06-01 01:06:08 +0300
commit47b60b6cfe681967a3dcf23d398ddef4d77a635c (patch)
tree8064cacd41b3fecc772a2e3a1d0f2b6fb3042cfc /app
parent09a80feede104004cc00bcfcf1ed425ae7ef28e1 (diff)
Make EmailsOnPushWorker use Sidekiq mailers queue
EmailsOnPushWorker was using the default queue, which made it impossible to prioritize MergeWorker and other key workers with a separate Sidekiq process.
Diffstat (limited to 'app')
-rw-r--r--app/workers/emails_on_push_worker.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/workers/emails_on_push_worker.rb b/app/workers/emails_on_push_worker.rb
index fa959fc56e3..971f969e25e 100644
--- a/app/workers/emails_on_push_worker.rb
+++ b/app/workers/emails_on_push_worker.rb
@@ -1,6 +1,7 @@
class EmailsOnPushWorker
include Sidekiq::Worker
+ sidekiq_options queue: :mailers
attr_reader :email, :skip_premailer
def perform(project_id, recipients, push_data, options = {})