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.)
This commit is contained in:
parent
639b0a8715
commit
8a65229b35
5 changed files with 16 additions and 3 deletions
9
app/workers/project_web_hook_worker.rb
Normal file
9
app/workers/project_web_hook_worker.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class ProjectWebHookWorker
|
||||
include Sidekiq::Worker
|
||||
|
||||
sidekiq_options queue: :project_web_hook
|
||||
|
||||
def perform(hook_id, data)
|
||||
WebHook.find(hook_id).execute data
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue