From dfe2b1676395f205f074e7be54cf5e241c277f12 Mon Sep 17 00:00:00 2001
From: Juan Batiz-Benet <juan@benet.ai>
Date: Sat, 7 Mar 2015 09:23:15 -0800
Subject: [PATCH] cmds/id: use req context -- dont timeout unnecessarily

commands should last as long as the user keeps the cmd going
---
 core/commands/id.go | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/core/commands/id.go b/core/commands/id.go
index e61bbe50e..9c7860a94 100644
--- a/core/commands/id.go
+++ b/core/commands/id.go
@@ -7,10 +7,8 @@ import (
 	"errors"
 	"io"
 	"strings"
-	"time"
 
 	b58 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-base58"
-	"github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
 
 	cmds "github.com/jbenet/go-ipfs/commands"
 	core "github.com/jbenet/go-ipfs/core"
@@ -81,14 +79,13 @@ ipfs id supports the format option for output with the following keys:
 			return
 		}
 
-		ctx, _ := context.WithTimeout(context.TODO(), time.Second*5)
 		// TODO handle offline mode with polymorphism instead of conditionals
 		if !node.OnlineMode() {
 			res.SetError(errors.New(offlineIdErrorMessage), cmds.ErrClient)
 			return
 		}
 
-		p, err := node.Routing.FindPeer(ctx, id)
+		p, err := node.Routing.FindPeer(req.Context().Context, id)
 		if err == kb.ErrLookupFailure {
 			res.SetError(errors.New(offlineIdErrorMessage), cmds.ErrClient)
 			return
-- 
GitLab