vad2der said over 6 years ago on Sidekiq on Production :

in the sidekiq.rb initializer

config.redis = {url: ENV['REDIS_PROVIDER']}

would be wrong as long as ENV['REDIS_PROVIDER'] = 'REDISTOGO_URL' as we see in your example. The correct one would be

config.redis = {url: ENV[ENV['REDIS_PROVIDER']]}

PS. thanks for the tutorial!


David Kimura PRO said over 6 years ago on Sidekiq on Production :

Thanks vad2der, that is correct if we set the REDIS_PROVIDER to the string REDISTOGO_URL instead of the environment variable.. 


Kiran Patil said about 6 years ago on Sidekiq on Production :
How about new episode on [sneaker](https://github.com/jondot/sneakers) gem ? https://blog.stanko.io/rabbitmq-is-more-than-a-sidekiq-replacement-b730d8176fb

Alejandro Ventura said over 5 years ago on Sidekiq on Production :
I'm getting this error in Heroku: ``` No such file or directory @ rb_sysopen - /app/tmp/pids/sidekiq.pid ``` Any suggestiong how to fix it?

Login to Comment