Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mitogen
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
mitogen
Commits
effe4117
Commit
effe4117
authored
7 years ago
by
David Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Treat EPIPE as disconnect too; needed for fakessh.
parent
9c4bf37c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mitogen/core.py
mitogen/core.py
+1
-1
No files found.
mitogen/core.py
View file @
effe4117
...
...
@@ -134,7 +134,7 @@ def io_op(func, *args):
return
func
(
*
args
),
False
except
OSError
,
e
:
IOLOG
.
debug
(
'io_op(%r) -> OSError: %s'
,
func
,
e
)
if
e
.
errno
not
in
(
errno
.
EIO
,
errno
.
ECONNRESET
):
if
e
.
errno
not
in
(
errno
.
EIO
,
errno
.
ECONNRESET
,
errno
.
EPIPE
):
raise
return
None
,
True
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment