Update sidekiq to version 8.1.2 (#38134)

This commit is contained in:
Matt Jankowski 2026-04-08 10:46:37 -04:00 committed by GitHub
parent 7d9b1e6d1e
commit 28b04ec24e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

View File

@ -816,12 +816,12 @@ GEM
securerandom (0.4.1) securerandom (0.4.1)
shoulda-matchers (7.0.1) shoulda-matchers (7.0.1)
activesupport (>= 7.1) activesupport (>= 7.1)
sidekiq (8.0.10) sidekiq (8.1.2)
connection_pool (>= 2.5.0) connection_pool (>= 3.0.0)
json (>= 2.9.0) json (>= 2.16.0)
logger (>= 1.6.2) logger (>= 1.7.0)
rack (>= 3.1.0) rack (>= 3.2.0)
redis-client (>= 0.23.2) redis-client (>= 0.26.0)
sidekiq-bulk (0.2.0) sidekiq-bulk (0.2.0)
sidekiq sidekiq
sidekiq-scheduler (6.0.1) sidekiq-scheduler (6.0.1)

View File

@ -131,9 +131,9 @@ RSpec.configure do |config|
config.around do |example| config.around do |example|
if example.metadata[:inline_jobs] == true if example.metadata[:inline_jobs] == true
Sidekiq::Testing.inline! Sidekiq.testing!(:inline)
else else
Sidekiq::Testing.fake! Sidekiq.testing!(:fake)
end end
example.run example.run
end end