1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #34212 -- Made RedisCacheClient.incr() use write connection.

Co-authored-by: Sin-Woo Bang <sinwoobang@gmail.com>
This commit is contained in:
Leo
2022-12-16 09:28:22 +05:30
committed by Mariusz Felisiak
parent 1e4da43955
commit a1bcdc94da
2 changed files with 9 additions and 1 deletions

View File

@@ -130,7 +130,7 @@ class RedisCacheClient:
return bool(client.exists(key))
def incr(self, key, delta):
client = self.get_client(key)
client = self.get_client(key, write=True)
if not client.exists(key):
raise ValueError("Key '%s' not found." % key)
return client.incr(key, delta)