Skip to content

Commit

Permalink
Pin sidekiq-unique-jobs to version 8.0.7 or earlier
Browse files Browse the repository at this point in the history
A [bug in version
8.0.8](mhenrixon/sidekiq-unique-jobs#846)
means jobs never get processed when using `until_and_while_executing`
lock type.

Therefore pinning to use an earlier version that does not have this
issue.
  • Loading branch information
brucebolt committed Sep 25, 2024
1 parent 87dd352 commit c0e41ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gem "pg"
gem "plek"
gem "prometheus-client"
gem "sentry-sidekiq"
gem "sidekiq-unique-jobs"
gem "sidekiq-unique-jobs", "< 8.0.8"
gem "whenever", require: false
gem "with_advisory_lock"

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ GEM
logger
rack (>= 2.2.4)
redis-client (>= 0.22.2)
sidekiq-unique-jobs (8.0.10)
sidekiq-unique-jobs (8.0.7)
concurrent-ruby (~> 1.0, >= 1.0.5)
sidekiq (>= 7.0.0, < 8.0.0)
thor (>= 1.0, < 3.0)
Expand Down Expand Up @@ -828,7 +828,7 @@ DEPENDENCIES
rspec-rails
rubocop-govuk
sentry-sidekiq
sidekiq-unique-jobs
sidekiq-unique-jobs (< 8.0.8)
simplecov
timecop
web-console
Expand Down

0 comments on commit c0e41ef

Please sign in to comment.