0
0
Fork 0

Fix background jobs not using locks like they are supposed to (#13361)

Also:

- Fix locks not being removed when jobs go to the dead job queue
- Add UI for managing locks to the Sidekiq dashboard
- Remove unused Sidekiq workers

Fix #13349
This commit is contained in:
Eugen Rochko 2020-03-31 21:59:03 +02:00 committed by GitHub
parent 1fb92037e4
commit 9014367bd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 23 additions and 152 deletions

View file

@ -13,6 +13,11 @@ Sidekiq.configure_server do |config|
config.server_middleware do |chain|
chain.add SidekiqErrorHandler
end
config.death_handlers << lambda do |job, _ex|
digest = job['lock_digest']
SidekiqUniqueJobs::Digests.delete_by_digest(digest) if digest
end
end
Sidekiq.configure_client do |config|