Commit 552e42f634fee790a8b6ce8d6655120bb2e69e4f
Exists in
master
and in
4 other branches
Merge pull request #2768 from rlaneve/feature/queued-web-hooks
Updates web hooks to process via queue
Showing
5 changed files
with
16 additions
and
3 deletions
Show diff stats
Procfile
app/models/project.rb
app/models/web_hook.rb
lib/tasks/sidekiq.rake
... | ... | @@ -6,7 +6,7 @@ namespace :sidekiq do |
6 | 6 | |
7 | 7 | desc "GITLAB | Start sidekiq" |
8 | 8 | task :start do |
9 | - run "nohup bundle exec sidekiq -q post_receive,mailer,system_hook,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1 &" | |
9 | + run "nohup bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1 &" | |
10 | 10 | end |
11 | 11 | |
12 | 12 | def pidfile | ... | ... |