Commit 97e11c7d authored by Brian Tiger Chow's avatar Brian Tiger Chow

fix(do) child listens on ctx too

parent 68618f3f
package util
import "code.google.com/p/go.net/context"
import "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
func Do(ctx context.Context, f func() error) error {
ch := make(chan error)
go func() { ch <- f() }()
go func() {
select {
case <-ctx.Done():
case ch <- f():
}
}()
select {
case <-ctx.Done():
return ctx.Err()
......
......@@ -4,7 +4,7 @@ import (
"errors"
"testing"
"code.google.com/p/go.net/context"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
)
func TestDoReturnsContextErr(t *testing.T) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment