We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308c82b commit b011b6bCopy full SHA for b011b6b
redis/cluster.py
@@ -957,7 +957,7 @@ def determine_slot(self, *args):
957
# redis server to parse the keys. Besides, there is a bug in redis<7.0
958
# where `self._get_command_keys()` fails anyway. So, we special case
959
# EVAL/EVALSHA.
960
- if command in ("EVAL", "EVALSHA"):
+ if command in ("EVAL", "EVALSHA", "EVAL_RO", "EVALSHA_RO"):
961
# command syntax: EVAL "script body" num_keys ...
962
if len(args) <= 2:
963
raise RedisClusterException(f"Invalid args in command: {args}")
0 commit comments