From 626d87b99350690f6eb2b92c2f717221cdaf6f9a Mon Sep 17 00:00:00 2001 From: Bastian Ike Date: Wed, 28 Jun 2017 10:57:20 +0200 Subject: internal: Use provided context in subsequent request Currently the HTTP request does not set the given context. This change sets the context (if not nil) on the request. Change-Id: I4bb21636d05050a68ba70ce92f9bf9ba608fbfad Reviewed-on: https://go-review.googlesource.com/45370 Run-TryBot: Chris Broadfoot Reviewed-by: Jaana Burcu Dogan Reviewed-by: Chris Broadfoot --- internal/token.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'internal/token.go') diff --git a/internal/token.go b/internal/token.go index efe7af5..766cfb6 100644 --- a/internal/token.go +++ b/internal/token.go @@ -18,6 +18,7 @@ import ( "time" "golang.org/x/net/context" + "golang.org/x/net/context/ctxhttp" ) // Token represents the crendentials used to authorize @@ -189,7 +190,7 @@ func RetrieveToken(ctx context.Context, clientID, clientSecret, tokenURL string, if !bustedAuth { req.SetBasicAuth(clientID, clientSecret) } - r, err := hc.Do(req) + r, err := ctxhttp.Do(ctx, hc, req) if err != nil { return nil, err } -- cgit v1.2.3