We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 419f6f7 commit 76bfc55Copy full SHA for 76bfc55
cmd/src/main.go
@@ -267,7 +267,7 @@ func readConfig() (*config, error) {
267
// no SRC_PROXY; check for the standard proxy env variables HTTP_PROXY, HTTPS_PROXY, and NO_PROXY
268
if u, err := http.ProxyFromEnvironment(&http.Request{URL: cfg.EndpointURL}); err != nil {
269
// when there's an error, the value for the env variable is not a legit URL
270
- return nil, fmt.Errorf("Invalid HTTP_PROXY or HTTPS_PROXY value: %w", err)
+ return nil, fmt.Errorf("invalid HTTP_PROXY or HTTPS_PROXY value: %w", err)
271
} else {
272
cfg.ProxyURL = u
273
}
0 commit comments