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
9e84136e
Commit
9e84136e
authored
Jul 29, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't run sprintf when unnecessary.
parent
30cdb148
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
connection.go
connection.go
+3
-1
No files found.
connection.go
View file @
9e84136e
...
...
@@ -391,7 +391,9 @@ func (c *Connection) ReadOp() (ctx context.Context, op interface{}, err error) {
}
// Choose an ID for this operation for the purposes of logging, and log it.
c
.
debugLog
(
inMsg
.
Header
()
.
Unique
,
1
,
"<- %s"
,
describeRequest
(
op
))
if
c
.
debugLogger
!=
nil
{
c
.
debugLog
(
inMsg
.
Header
()
.
Unique
,
1
,
"<- %s"
,
describeRequest
(
op
))
}
// Special case: handle interrupt requests inline.
if
interruptOp
,
ok
:=
op
.
(
*
interruptOp
);
ok
{
...
...
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