Version: 5.1.0
Platform: Amazon Linux
Description: json().get(key) returns None
after upgrading to version 5.1.0 when working with RedisCluster. The redis CLI command works fine (JSON.GET) for the same key, the issue is only with json().get() with the latest version (5.1.0). This is working as expected with version 5.0.8.
from redis import RedisCluster
redis_client = RedisCluster.from_url(url)
json = redis_client.json().get(key)