Miguel Grinberg
4 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
3 changed files with
3 additions and
2 deletions
-
socketio/asyncio_client.py
-
socketio/client.py
-
tests/asyncio/test_asyncio_client.py
|
|
@ -21,7 +21,7 @@ class AsyncClient(client.Client): |
|
|
|
reconnect to the server after an interruption, or |
|
|
|
``False`` to not reconnect. The default is ``True``. |
|
|
|
:param reconnection_attempts: How many reconnection attempts to issue |
|
|
|
before giving up, or 0 for infinity attempts. |
|
|
|
before giving up, or 0 for infinite attempts. |
|
|
|
The default is 0. |
|
|
|
:param reconnection_delay: How long to wait in seconds before the first |
|
|
|
reconnection attempt. Each successive attempt |
|
|
|
|
|
@ -42,7 +42,7 @@ class Client(object): |
|
|
|
reconnect to the server after an interruption, or |
|
|
|
``False`` to not reconnect. The default is ``True``. |
|
|
|
:param reconnection_attempts: How many reconnection attempts to issue |
|
|
|
before giving up, or 0 for infinity attempts. |
|
|
|
before giving up, or 0 for infinite attempts. |
|
|
|
The default is 0. |
|
|
|
:param reconnection_delay: How long to wait in seconds before the first |
|
|
|
reconnection attempt. Each successive attempt |
|
|
|
|
|
@ -905,6 +905,7 @@ class TestAsyncClient(unittest.TestCase): |
|
|
|
side_effect=[ValueError, exceptions.ConnectionError, None] |
|
|
|
) |
|
|
|
_run(c._handle_reconnect()) |
|
|
|
print(c.reconnection_attempts) |
|
|
|
print(wait_for.mock.call_count) # logging to debug #572 |
|
|
|
print(wait_for.mock.call_args_list) |
|
|
|
assert wait_for.mock.call_count == 2 |
|
|
|