-
Notifications
You must be signed in to change notification settings - Fork 196
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
channels_redis hard-requires EVAL command which fails on Pivotal's Shared Redis Release #290
Comments
@vanschelven If you can show how these can be done without then we can remove them but otherwise I'm not sure we can do anything about this 🤔 |
I was looking into it, there's "only 3" commits in which they were introduced but I had to conclude that I'm a bit out of my depth trying to approach this without any serious understanding. |
|
It'll be the Lua scripting... I'm not sure we can do with out. 🤔 |
channels_redis uses
.eval()
in a number of locations.On certain redis server installations
EVAL
has been renamed for security reasons.Pivotal's Shared Redis Release is an example of a pre-packaged redis that has
EVAL
renamed by default.Under those circumstances, this happens:
It would be great if
EVAL
could be removed as a requirement.Tangentially related: #226
The text was updated successfully, but these errors were encountered: