We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccd380 commit 6e7ad70Copy full SHA for 6e7ad70
tests/test_asyncio/test_connection_pool.py
@@ -5,6 +5,7 @@
5
import pytest_asyncio
6
import redis.asyncio as redis
7
from redis.asyncio.connection import Connection, to_bool
8
+from redis.auth.token import TokenInterface
9
from tests.conftest import skip_if_redis_enterprise, skip_if_server_version_lt
10
11
from .compat import aclosing, mock
@@ -106,6 +107,12 @@ async def disconnect(self):
106
107
async def can_read_destructive(self, timeout: float = 0):
108
return False
109
110
+ def set_re_auth_token(self, token: TokenInterface):
111
+ pass
112
+
113
+ async def re_auth(self):
114
115
116
117
class TestConnectionPool:
118
@asynccontextmanager
0 commit comments