forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-95573: Reduce test data size in test_asyncio/test_ssl.py (py…
…thonGH-95668) Co-authored-by: Łukasz Langa <[email protected]> (cherry picked from commit 3a9e1fd) Co-authored-by: Fantix King <[email protected]>
- Loading branch information
1 parent
6a36b8e
commit 1e3d3e5
Showing
2 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
Misc/NEWS.d/next/Tests/2022-08-05-09-57-43.gh-issue-95573.edMdQB.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
:source:`Lib/test/test_asyncio/test_ssl.py` exposed a bug in the macOS | ||
kernel where intense concurrent load on non-blocking sockets occasionally | ||
causes :const:`errno.ENOBUFS` ("No buffer space available") to be emitted. | ||
FB11063974 filed with Apple, in the mean time as a workaround buffer size | ||
used in tests on macOS is decreased to avoid intermittent failures. Patch | ||
by Fantix King. |