From aa61e392b23847a771541768e033c2a2c17bb853 Mon Sep 17 00:00:00 2001 From: Anand Singh Kunwar Date: Mon, 27 Jan 2020 20:13:20 +0530 Subject: [PATCH] Make remote client `Store` use passed context (#6673) * Remote store client's `Store` API currently doesn't use passed context, but instead just constructs a new `context.Background()` Signed-off-by: Anand Singh Kunwar --- storage/remote/client.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/storage/remote/client.go b/storage/remote/client.go index 764d4b082..c1af4abad 100644 --- a/storage/remote/client.go +++ b/storage/remote/client.go @@ -85,9 +85,8 @@ func (c *Client) Store(ctx context.Context, req []byte) error { httpReq.Header.Set("Content-Type", "application/x-protobuf") httpReq.Header.Set("User-Agent", userAgent) httpReq.Header.Set("X-Prometheus-Remote-Write-Version", "0.1.0") - httpReq = httpReq.WithContext(ctx) - ctx, cancel := context.WithTimeout(context.Background(), c.timeout) + ctx, cancel := context.WithTimeout(ctx, c.timeout) defer cancel() httpResp, err := c.client.Do(httpReq.WithContext(ctx))