diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2024-01-13 09:48:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-13 09:48:33 (GMT) |
commit | c7d59bd8cfa053e77ae3446c82afff1fd38a4886 (patch) | |
tree | d2f46697d8bb6bb6e57c07dce3f37bf6497e3993 /Misc | |
parent | 21f83efd106a19f1d26e049c06678a6729a721f0 (diff) | |
download | cpython-c7d59bd8cfa053e77ae3446c82afff1fd38a4886.zip cpython-c7d59bd8cfa053e77ae3446c82afff1fd38a4886.tar.gz cpython-c7d59bd8cfa053e77ae3446c82afff1fd38a4886.tar.bz2 |
gh-101225: Increase the socket backlog when creating a multiprocessing.connection.Listener (#113567)
Increase the backlog for multiprocessing.connection.Listener` objects created
by `multiprocessing.manager` and `multiprocessing.resource_sharer` to
significantly reduce the risk of getting a connection refused error when creating
a `multiprocessing.connection.Connection` to them.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-12-29-17-46-06.gh-issue-101225.QaEyxF.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-12-29-17-46-06.gh-issue-101225.QaEyxF.rst b/Misc/NEWS.d/next/Library/2023-12-29-17-46-06.gh-issue-101225.QaEyxF.rst new file mode 100644 index 0000000..ab3c3a5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-12-29-17-46-06.gh-issue-101225.QaEyxF.rst @@ -0,0 +1,4 @@ +Increase the backlog for :class:`multiprocessing.connection.Listener` objects created +by :mod:`multiprocessing.manager` and :mod:`multiprocessing.resource_sharer` to +significantly reduce the risk of getting a connection refused error when creating +a :class:`multiprocessing.connection.Connection` to them. |