mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Fix precedence issue
This commit is contained in:
parent
7c54170578
commit
7d96cc32fa
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ module Sidekiq
|
|||
if File.exist?(cfile)
|
||||
opts = YAML.load(ERB.new(IO.read(cfile)).result)
|
||||
opts = opts.merge(opts.delete(environment) || {})
|
||||
parse_queues opts, opts.delete(:queues) || []
|
||||
parse_queues(opts, opts.delete(:queues) || [])
|
||||
else
|
||||
raise ArgumentError, "can't find config file #{cfile}"
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue