summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-03 19:38:29 (GMT)
committerGitHub <noreply@github.com>2020-09-03 19:38:29 (GMT)
commit49571c0b0e57e20d85727c738d9a0fe342dd2938 (patch)
tree0ab2f46f41cd05486ecb74771a6d8014e8499ee4 /Misc/NEWS.d/next/Library
parent270e2492900275fe2ec93c7982fa175ed132e6b9 (diff)
downloadcpython-49571c0b0e57e20d85727c738d9a0fe342dd2938.zip
cpython-49571c0b0e57e20d85727c738d9a0fe342dd2938.tar.gz
cpython-49571c0b0e57e20d85727c738d9a0fe342dd2938.tar.bz2
bpo-39010: Fix errors logged on proactor loop restart (GH-22017) (#22034)
Stopping and restarting a proactor event loop on windows can lead to spurious errors logged (ConnectionResetError while reading from the self pipe). This fixes the issue by ensuring that we don't attempt to start multiple copies of the self-pipe reading loop. (cherry picked from commit ea5a6363c3f8cc90b7c0cc573922b10f296073b6) Co-authored-by: Ben Darnell <ben@bendarnell.com> Co-authored-by: Ben Darnell <ben@bendarnell.com>
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r--Misc/NEWS.d/next/Library/2020-08-30-10-24-26.bpo-39010._mzXJW.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-08-30-10-24-26.bpo-39010._mzXJW.rst b/Misc/NEWS.d/next/Library/2020-08-30-10-24-26.bpo-39010._mzXJW.rst
new file mode 100644
index 0000000..0d9015b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-08-30-10-24-26.bpo-39010._mzXJW.rst
@@ -0,0 +1,2 @@
+Restarting a ``ProactorEventLoop`` on Windows no longer logs spurious
+``ConnectionResetErrors``.