You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version: redis==4.2.2 Platform: MacOS with python==3.10 Description: execute_command behaves strangely in cluster mode.
run no-key command:
# works finerc.cluster_info()
rc.execute_command("CLUSTER INFO")
# RedisClusterException: No way to dispatch this command to Redis Cluster. Missing key.rc.execute_command("CLUSTER", "INFO")
rc.execute_command("cluster info")
rc.execute_command("cluster", "info")