chore(all): merging master and resolving conflicts

This commit is contained in:
censhin 2021-10-04 15:23:05 -04:00
commit 1081294c45
2 changed files with 3 additions and 6 deletions

View File

@ -2,7 +2,7 @@ language: go
go_import_path: github.com/mailgun/groupcache
os: linux
dist: trusty
dist: xenial
sudo: false
script:
@ -12,6 +12,7 @@ go:
- 1.13.x
- 1.14.x
- 1.15.x
- 1.17.x
- master
cache:

View File

@ -274,15 +274,11 @@ func (h *httpGetter) makeRequest(ctx context.Context, m string, in request, b io
url.QueryEscape(in.GetGroup()),
url.QueryEscape(in.GetKey()),
)
req, err := http.NewRequest(m, u, b)
req, err := http.NewRequestWithContext(ctx, method, u, nil)
if err != nil {
return err
}
// Pass along the context to the RoundTripper
req = req.WithContext(ctx)
tr := http.DefaultTransport
if h.getTransport != nil {
tr = h.getTransport(ctx)