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
Describe the bug
Using pipe.watch(key) within a pipeline with a client that was created without host or port the client inside the pipeline will use a different server. More generally, if Redis is trying to establish another connection (socket) with a server, it will get a connection to a new empty FakeRedis each time.
Expected behavior
I expect FakeRedis to have the same data with and without a pipeline if I'm using the same instance of the FakeRedis.
Desktop (please complete the following information):
Ubuntu 22.04.2 LTC
python 3.10.12
redis-py version redis==4.6.0
Additional context
I wasn't sure if this is a bug really, because this can also be remediated by creating FakeRedis with some random values of host and port. The example above would work if you initialize fr with fr = FakeRedis(host='blah', port=0).
But to me, it seems more like a workaround, so I opened a PR.
The text was updated successfully, but these errors were encountered:
This is related to #140 and #142. I believe as of #140 this was still working. After #142 a new connection from the connection pool would be created to a new/fresh FakeServer within the same pipeline.
Describe the bug
Using
pipe.watch(key)
within a pipeline with a client that was created withouthost
orport
the client inside the pipeline will use a different server. More generally, ifRedis
is trying to establish another connection (socket) with a server, it will get a connection to a new empty FakeRedis each time.To Reproduce
Expected behavior
I expect FakeRedis to have the same data with and without a pipeline if I'm using the same instance of the
FakeRedis
.Desktop (please complete the following information):
redis==4.6.0
Additional context
I wasn't sure if this is a bug really, because this can also be remediated by creating FakeRedis with some random values of
host
andport
. The example above would work if you initializefr
withfr = FakeRedis(host='blah', port=0)
.But to me, it seems more like a workaround, so I opened a PR.
The text was updated successfully, but these errors were encountered: