Skip to content

Commit e8e6d99

Browse files
zs-neozhousheng06vladvildanov
authored
Fix incorrect attribute reuse (#3456)
add CacheEntry Co-authored-by: zhousheng06 <zhousheng06@meituan.com> Co-authored-by: Vladyslav Vildanov <117659936+vladvildanov@users.noreply.github.com>
1 parent a694a79 commit e8e6d99

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

redis/connection.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -904,9 +904,11 @@ def read_response(
904904
and self._cache.get(self._current_command_cache_key).status
905905
!= CacheEntryStatus.IN_PROGRESS
906906
):
907-
return copy.deepcopy(
907+
res = copy.deepcopy(
908908
self._cache.get(self._current_command_cache_key).cache_value
909909
)
910+
self._current_command_cache_key = None
911+
return res
910912

911913
response = self._conn.read_response(
912914
disable_decoding=disable_decoding,
@@ -932,6 +934,8 @@ def read_response(
932934
cache_entry.cache_value = response
933935
self._cache.set(cache_entry)
934936

937+
self._current_command_cache_key = None
938+
935939
return response
936940

937941
def pack_command(self, *args):

tests/test_connection.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -501,9 +501,9 @@ def test_read_response_returns_cached_reply(self, mock_cache, mock_connection):
501501
)
502502
proxy_connection.send_command(*["GET", "foo"], **{"keys": ["foo"]})
503503
assert proxy_connection.read_response() == b"bar"
504+
assert proxy_connection._current_command_cache_key is None
504505
assert proxy_connection.read_response() == b"bar"
505506

506-
mock_connection.read_response.assert_called_once()
507507
mock_cache.set.assert_has_calls(
508508
[
509509
call(
@@ -530,9 +530,6 @@ def test_read_response_returns_cached_reply(self, mock_cache, mock_connection):
530530
call(CacheKey(command="GET", redis_keys=("foo",))),
531531
call(CacheKey(command="GET", redis_keys=("foo",))),
532532
call(CacheKey(command="GET", redis_keys=("foo",))),
533-
call(CacheKey(command="GET", redis_keys=("foo",))),
534-
call(CacheKey(command="GET", redis_keys=("foo",))),
535-
call(CacheKey(command="GET", redis_keys=("foo",))),
536533
]
537534
)
538535

0 commit comments

Comments
 (0)