diff --git a/socketio/asyncio_client.py b/socketio/asyncio_client.py index 1bf23ca..03aa931 100644 --- a/socketio/asyncio_client.py +++ b/socketio/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 diff --git a/socketio/client.py b/socketio/client.py index e5599eb..24bf72e 100644 --- a/socketio/client.py +++ b/socketio/client.py @@ -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 diff --git a/tests/asyncio/test_asyncio_client.py b/tests/asyncio/test_asyncio_client.py index 1a1d7d6..e222bb8 100644 --- a/tests/asyncio/test_asyncio_client.py +++ b/tests/asyncio/test_asyncio_client.py @@ -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