We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc0a5fb commit 8cd2eaaCopy full SHA for 8cd2eaa
docker/utils/socket.py
@@ -17,6 +17,9 @@
17
class SocketError(Exception):
18
pass
19
20
+# NpipeSockets have their own error types
21
+# pywintypes.error: (109, 'ReadFile', 'The pipe has been ended.')
22
+NPIPE_ENDED = 109
23
24
def read(socket, n=4096):
25
"""
@@ -37,6 +40,12 @@ def read(socket, n=4096):
37
40
except OSError as e:
38
41
if e.errno not in recoverable_errors:
39
42
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
49
50
51
def read_exactly(socket, n):
0 commit comments