Chromium Code Reviews| Index: impl/prod/context.go |
| diff --git a/impl/prod/context.go b/impl/prod/context.go |
| index bccbf7934cd648ad1cb748ec7fad3b0d3f46b38e..8a613253d2aa4cd85cc42a80895cc36ee07d1da8 100644 |
| --- a/impl/prod/context.go |
| +++ b/impl/prod/context.go |
| @@ -114,7 +114,7 @@ func UseRemote(inOutCtx *context.Context, host string, client *http.Client) (err |
| if strings.HasPrefix(host, "localhost") { |
| transp := http.DefaultTransport |
| if aeCtx := AEContextNoTxn(*inOutCtx); aeCtx != nil { |
| - transp = urlfetch.Get(aeCtx) |
| + transp = urlfetch.Get(*inOutCtx) |
|
Vadim Sh.
2016/01/11 21:27:18
or you can use real URL fetch service with aeCtx.
|
| } |
| client = &http.Client{Transport: transp} |