Merge pull request #2768 from rlaneve/feature/queued-web-hooks

Updates web hooks to process via queue
This commit is contained in:
Dmitriy Zaporozhets 2013-01-27 08:52:37 -08:00
commit 552e42f634
5 changed files with 16 additions and 3 deletions

View file

@ -6,7 +6,7 @@ namespace :sidekiq do
desc "GITLAB | Start sidekiq"
task :start do
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 &"
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 &"
end
def pidfile