Skip to content

Commit 8cd2eaa

Browse files
committed
socket: handle npipe close. Fixes #3045
Signed-off-by: Nick Santos <[email protected]>
1 parent bc0a5fb commit 8cd2eaa

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docker/utils/socket.py

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
class SocketError(Exception):
1818
pass
1919

20+
# NpipeSockets have their own error types
21+
# pywintypes.error: (109, 'ReadFile', 'The pipe has been ended.')
22+
NPIPE_ENDED = 109
2023

2124
def read(socket, n=4096):
2225
"""
@@ -37,6 +40,12 @@ def read(socket, n=4096):
3740
except OSError as e:
3841
if e.errno not in recoverable_errors:
3942
raise
43+
except Exception as e:
44+
if isinstance(socket, NpipeSocket) and len(e.args) > 0 and e.args[0] == NPIPE_ENDED:
45+
# npipes don't support duplex sockets, so we interpret
46+
# a PIPE_ENDED error as a close operation (0-length read).
47+
return 0
48+
raise
4049

4150

4251
def read_exactly(socket, n):

0 commit comments

Comments
 (0)