mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
polish, changes, bump
This commit is contained in:
parent
e942dfba70
commit
28dcf550bb
4 changed files with 5 additions and 4 deletions
|
@ -11,4 +11,4 @@ rvm:
|
|||
- 2.3.7
|
||||
- 2.4.4
|
||||
- 2.5.1
|
||||
- jruby-9.1.16.0
|
||||
- jruby-9.1.17.0
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
HEAD
|
||||
-----------
|
||||
|
||||
- Switch Sidekiq::Testing impl from alias\_method to Module#prepend, for resiliency [#3852]
|
||||
- Remove concurrent-ruby gem dependency [#3830]
|
||||
|
||||
5.1.3
|
||||
|
|
|
@ -72,7 +72,7 @@ module Sidekiq
|
|||
|
||||
class EmptyQueueError < RuntimeError; end
|
||||
|
||||
module ClientCoreExt
|
||||
module TestingClient
|
||||
def raw_push(payloads)
|
||||
if Sidekiq::Testing.fake?
|
||||
payloads.each do |job|
|
||||
|
@ -95,7 +95,7 @@ module Sidekiq
|
|||
end
|
||||
end
|
||||
|
||||
Sidekiq::Client.prepend ClientCoreExt
|
||||
Sidekiq::Client.prepend TestingClient
|
||||
|
||||
module Queues
|
||||
##
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
module Sidekiq
|
||||
VERSION = "5.1.3"
|
||||
VERSION = "5.1.4"
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue