summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-27 08:52:37 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-27 08:52:37 -0800
commit552e42f634fee790a8b6ce8d6655120bb2e69e4f (patch)
tree3b3bcd44cdb5a3f03596a3d585a620778e6d2b6d /lib
parentce0ec05c6371e055e9cc90e6239cafc015a6a69b (diff)
parent8a65229b3548a421ca6e7c41a819b40d50f7e162 (diff)
downloadgitlab-ce-552e42f634fee790a8b6ce8d6655120bb2e69e4f.tar.gz
Merge pull request #2768 from rlaneve/feature/queued-web-hooks
Updates web hooks to process via queue
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/sidekiq.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/sidekiq.rake b/lib/tasks/sidekiq.rake
index 01da919d7f8..0d2ec6f332c 100644
--- a/lib/tasks/sidekiq.rake
+++ b/lib/tasks/sidekiq.rake
@@ -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