diff options
author | Kristján Valur Jónsson <sweskman@gmail.com> | 2023-05-10 10:25:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 13:25:41 +0300 |
commit | 35b7e09a57a1b7e2931d90e4b13858b68cee97cf (patch) | |
tree | 3f96c1a979d5b26f0813cabbed37eacdcd9b47bc /tests/test_asyncio | |
parent | f056118224e851915922de02ec40f2d16c9e4dd7 (diff) | |
download | redis-py-35b7e09a57a1b7e2931d90e4b13858b68cee97cf.tar.gz |
Kristjan/issue #2754: Add missing argument to SentinelManagedConnection.read_response() (#2756)
* Increase timeout for a test which would hang completely if failing.
Timeouts in virtualized CI backends can occasionally fail if too short.
* add "disconnect_on_error" argument to SentinelManagedConnection
* update Changes
* lint
Diffstat (limited to 'tests/test_asyncio')
-rw-r--r-- | tests/test_asyncio/test_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_asyncio/test_commands.py b/tests/test_asyncio/test_commands.py index 955b9d4..5cde286 100644 --- a/tests/test_asyncio/test_commands.py +++ b/tests/test_asyncio/test_commands.py @@ -3051,7 +3051,7 @@ class TestRedisCommands: # the task is now sleeping, lets send it an exception task.cancel() # If all is well, the task should finish right away, otherwise fail with Timeout - async with async_timeout(0.1): + async with async_timeout(1.0): await task |