Browse Source

More instrumentation for #572 #nolog

pull/683/head
Miguel Grinberg 4 years ago
parent
commit
17d50fabb5
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      socketio/asyncio_client.py
  2. 2
      socketio/client.py
  3. 1
      tests/asyncio/test_asyncio_client.py

2
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

2
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

1
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

Loading…
Cancel
Save