redis_client = redis.Redis(host='127.0.0.1', port=6380)
print(redis_client.ping())
Output: True
redis_client2 = redis.Redis(host='127.0.0.5', port=6380)
print(redis_client.ping())
Output: True
running server on (host='127.0.0.1', port=6380) Is this expected behavior or a bug?
Comment From: itamarhaber
Hello @Ashish5869
This behavior is expected as you're still using the redis_client (instead of redis_client2 perhaps?).
Comment From: Ashish5869
ok, thank you for the response