Skip to content
代码片段 群组 项目
未验证 提交 e2ad8a70 编辑于 作者: Peter Leitzen's avatar Peter Leitzen 提交者: GitLab
浏览文件

Merge branch 'tchu-update-sidekiq-failure-handling-docs' into 'master'

Update Sidekiq failure handling docs

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/159430



Merged-by: default avatarPeter Leitzen <pleitzen@gitlab.com>
Approved-by: default avatarPeter Leitzen <pleitzen@gitlab.com>
Co-authored-by: default avatarTerri Chu <tchu@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -132,12 +132,16 @@ If you need to perform an action when a job fails after all of its retry attempt ...@@ -132,12 +132,16 @@ If you need to perform an action when a job fails after all of its retry attempt
```ruby ```ruby
sidekiq_retries_exhausted do |msg, ex| sidekiq_retries_exhausted do |msg, ex|
project = Project.find(msg['args'].first) project = Project.find_by_id(msg['args'].first)
return unless project
project.perform_a_rollback # handle the permanent failure project.perform_a_rollback # handle the permanent failure
end end
def perform(project_id) def perform(project_id)
project = Project.find(project_id) project = Project.find_by_id(project_id)
return unless project
project.some_action # throws an exception project.some_action # throws an exception
end end
``` ```
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册