Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
ef3d11e2
Commit
ef3d11e2
authored
Jul 27, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
It seems the write returns errors as a matter of course when unmounting.
parent
20a01b67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
connection.go
connection.go
+4
-1
No files found.
connection.go
View file @
ef3d11e2
...
...
@@ -480,7 +480,10 @@ func (c *Connection) Reply(ctx context.Context, opErr error) {
// Send the reply to the kernel.
replyMsg
:=
kernelResponse
(
m
.
Header
()
.
Unique
,
op
,
opErr
,
c
.
protocol
)
if
err
:=
c
.
writeMessage
(
replyMsg
);
err
!=
nil
{
log
.
Fatalf
(
"writeMessage: %v"
,
err
)
if
c
.
errorLogger
!=
nil
{
c
.
errorLogger
.
Printf
(
"writeMessage: %v"
,
err
)
}
return
}
}
...
...
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