1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
This commit is contained in:
Mike Perham 2019-12-18 11:05:06 -08:00
parent 5dd6a3a02c
commit b3af4acfdd
2 changed files with 3 additions and 1 deletions

View file

@ -1,7 +1,7 @@
PATH
remote: .
specs:
sidekiq (6.0.3)
sidekiq (6.0.4)
connection_pool (>= 2.2.2)
rack (>= 2.0.0)
rack-protection (>= 2.0.0)

View file

@ -45,5 +45,7 @@ describe 'ActiveJob' do
job = q.first
assert_equal 4, job["retry"]
assert_equal 5, job["backtrace"]
# AJ's queue_as should take precedence over Sidekiq's queue option
assert_equal "bar", job["queue"]
end
end