diff options
| author | Yury Selivanov <yury@magic.io> | 2016-09-15 18:13:15 (GMT) |
|---|---|---|
| committer | Yury Selivanov <yury@magic.io> | 2016-09-15 18:13:15 (GMT) |
| commit | a1b0e7db7315ff0d8d0f8edc056f387f198cf5a1 (patch) | |
| tree | fec197b937b7573fb1558aa9ce4e6b0d75557f24 /Lib/test/test_asyncio/test_base_events.py | |
| parent | 4357cf62028964eb1a56c503ec1296de3034b77b (diff) | |
| download | cpython-a1b0e7db7315ff0d8d0f8edc056f387f198cf5a1.zip cpython-a1b0e7db7315ff0d8d0f8edc056f387f198cf5a1.tar.gz cpython-a1b0e7db7315ff0d8d0f8edc056f387f198cf5a1.tar.bz2 | |
Issue #27906: Fix socket accept exhaustion during high TCP traffic.
Patch by Kevin Conway.
Diffstat (limited to 'Lib/test/test_asyncio/test_base_events.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_base_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py index 206ebc6..0efdc20 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -1634,7 +1634,7 @@ class BaseEventLoopWithSelectorTests(test_utils.TestCase): self.loop.call_later.assert_called_with(constants.ACCEPT_RETRY_DELAY, # self.loop._start_serving mock.ANY, - MyProto, sock, None, None) + MyProto, sock, None, None, mock.ANY) def test_call_coroutine(self): @asyncio.coroutine |
