-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use with Redis 5.0 gem causes error loading schedule #750
Comments
Seeing some issues with redis 5.x.x gem and
|
I tried the latest version and it still silently fails in background mode (I wish logging wasn't so broken for
|
I think Redis 5.0 changed the way you specify the server and port. I'm not near a computer though so that may be something you want to look into. |
This one is a new one to me. I wish I knew what that system error was. Reverting to redis 4.8 fixes it? |
Yes. |
FYI I fixed this by changing redis connection string from: Resque.redis = 'localhost:6379' to Resque.redis = '127.0.0.1:6379' Not sure what's the deal with |
After upgrading from Redis gem v4.8.0 to v5.0.2 we got the following error on Heroku.
Our Redis URLs take the form
redis://h:[email protected]:12345
Reverting to Redis v4.8.0 corrects the issue.
The text was updated successfully, but these errors were encountered: