mirror of
https://github.com/deanpcmad/sidekiq-limit_fetch.git
synced 2022-11-09 13:54:36 -05:00
Merge pull request #128 from evgeniradev/fix_undefined_var_options
fix undefined variable options in sidekiq 6.5.0
This commit is contained in:
commit
845aea5a40
1 changed files with 2 additions and 1 deletions
|
@ -6,7 +6,8 @@ class Sidekiq::Manager
|
|||
end
|
||||
|
||||
def start
|
||||
Sidekiq::LimitFetch::Queues.start options
|
||||
# In sidekiq 6.5.0 the variable @options has been renamed to @config
|
||||
Sidekiq::LimitFetch::Queues.start @options || @config
|
||||
Sidekiq::LimitFetch::Global::Monitor.start!
|
||||
super
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue