Skip to content

Commit 9dda3fe

Browse files
authored
TOOL-1249. error clarification
TOOL-1249. error clarification
2 parents 2ebc1d6 + d41ea6a commit 9dda3fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

service/signer/http.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ type RoundTripper struct {
5454
func (r RoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
5555
err := r.signer.Sign(req, r.signingKey)
5656
if err != nil {
57-
return nil, errors.Wrap(err, "unable to sign request")
57+
return nil, errors.Wrap(err, "signing proxy: unable to sign request")
5858
}
5959

6060
rsp, err := r.inner.RoundTrip(req)
6161
if err != nil {
62-
return nil, errors.Wrap(err, "unable to perform request")
62+
return nil, errors.Wrap(err, "signing proxy: unable to perform request")
6363
}
6464

6565
return rsp, nil

0 commit comments

Comments
 (0)