mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Add issue number
Use stringify_keys instead of stringify_keys!
This commit is contained in:
parent
33b9999c43
commit
bab38f194c
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
HEAD
|
||||
-----------
|
||||
- Stringify Sidekiq.default_worker_options's keys [#]
|
||||
- Stringify Sidekiq.default_worker_options's keys [#2126]
|
||||
- Add random integer to process identity [#2113, michaeldiscala]
|
||||
- Log Sidekiq Pro's Batch ID if available [#2076]
|
||||
- Refactor Processor Redis usage to avoid redis/redis-rb#490 [#]
|
||||
|
|
|
@ -97,7 +97,7 @@ module Sidekiq
|
|||
end
|
||||
|
||||
def self.default_worker_options=(hash)
|
||||
@default_worker_options = default_worker_options.merge(hash).stringify_keys!
|
||||
@default_worker_options = default_worker_options.merge(hash).stringify_keys
|
||||
end
|
||||
|
||||
def self.default_worker_options
|
||||
|
|
Loading…
Reference in a new issue