We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Heroku gives us a Redis connection string that looks kinda like this: redis://h:[email protected]:6379
redis://h:[email protected]:6379
Unfortunately the SuoRedis adapter doesn't support passing AdapterOptions, so we can't do this:
ActiveJob::Locking.options.adapter = ActiveJob::Locking::Adapters::SuoRedis ActiveJob::Locking.options.adapter_options = { connection: { url: ENV['REDIS_URL'] } }
The text was updated successfully, but these errors were encountered:
This is the same issue I was dealing with here: #3
Sorry, something went wrong.
Sorry for late response. Can you write up a patch?
No branches or pull requests
Heroku gives us a Redis connection string that looks kinda like this:
redis://h:[email protected]:6379
Unfortunately the SuoRedis adapter doesn't support passing AdapterOptions, so we can't do this:
The text was updated successfully, but these errors were encountered: