1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

remove namespacea

This commit is contained in:
Mike Perham 2017-11-02 09:03:37 -07:00
parent 63ee43353b
commit e19dd4761d

View file

@ -5,7 +5,7 @@ require 'sidekiq'
# A Web process always runs as client, no need to configure server
Sidekiq.configure_client do |config|
config.redis = { url: 'redis://localhost:6379/0', size: 1, namespace: 'foo' }
config.redis = { url: 'redis://localhost:6379/0', size: 1 }
end
Sidekiq::Client.push('class' => "HardWorker", 'args' => [])