BigW Consortium Gitlab

Commit b4e75155 by Lin Jen-Shin

Use run_after_commit to avoid race condition, feedback:

parent 98217bc0
......@@ -84,7 +84,9 @@ module Ci
end
after_transition any => [:success, :failed] do |pipeline|
SendPipelineNotificationWorker.perform_async(pipeline.id)
pipeline.run_after_commit do
SendPipelineNotificationWorker.perform_async(pipeline.id)
end
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment