Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-merkledag
Commits
d54bc701
Commit
d54bc701
authored
Mar 07, 2015
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added cancel func calls previously ignored
parent
7e655ddf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
merkledag.go
merkledag.go
+2
-1
No files found.
merkledag.go
View file @
d54bc701
...
@@ -88,7 +88,8 @@ func (n *dagService) Get(k u.Key) (*Node, error) {
...
@@ -88,7 +88,8 @@ func (n *dagService) Get(k u.Key) (*Node, error) {
return
nil
,
fmt
.
Errorf
(
"dagService is nil"
)
return
nil
,
fmt
.
Errorf
(
"dagService is nil"
)
}
}
ctx
,
_
:=
context
.
WithTimeout
(
context
.
TODO
(),
time
.
Minute
)
ctx
,
cancel
:=
context
.
WithTimeout
(
context
.
TODO
(),
time
.
Minute
)
defer
cancel
()
// we shouldn't use an arbitrary timeout here.
// we shouldn't use an arbitrary timeout here.
// since Get doesnt take in a context yet, we give a large upper bound.
// since Get doesnt take in a context yet, we give a large upper bound.
// think of an http request. we want it to go on as long as the client requests it.
// think of an http request. we want it to go on as long as the client requests 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