diff options
author | Ryan LaNeve <ryan.laneve@aciss.com> | 2013-01-24 15:15:24 -0500 |
---|---|---|
committer | Ryan LaNeve <ryan.laneve@aciss.com> | 2013-01-25 10:42:57 -0500 |
commit | 8a65229b3548a421ca6e7c41a819b40d50f7e162 (patch) | |
tree | b762df8aa5346c9b8b069d61e95b4c764445a24a /Procfile | |
parent | 639b0a8715074a166eb9ef4252e4f2b5ae5e2c84 (diff) | |
download | gitlab-ce-8a65229b3548a421ca6e7c41a819b40d50f7e162.tar.gz |
Updates project to process web hooks async via sidekiq.
A new queue of "project_web_hook" is used to process web hooks asynchronously, allowing each to succeed/fail (and be retried) independently.
(Basically, project web hooks now process the same as system hooks.)
Diffstat (limited to 'Procfile')
-rw-r--r-- | Procfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,2 +1,2 @@ web: bundle exec unicorn_rails -p $PORT -worker: bundle exec sidekiq -q post_receive,mailer,system_hook,common,default +worker: bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,common,default |