Skip to content

Commit

Permalink
fix(settings): fix httpproxy.go error message (#1596)
Browse files Browse the repository at this point in the history
  • Loading branch information
filippobuletto authored May 27, 2023
1 parent 9488a9f commit 7ba70f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/configuration/sources/secrets/httpproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func readHTTPProxy() (settings settings.HTTPProxy, err error) {
"/run/secrets/httpproxy_password",
)
if err != nil {
return settings, fmt.Errorf("reading OpenVPN password secret file: %w", err)
return settings, fmt.Errorf("reading HTTP proxy password secret file: %w", err)
}

return settings, nil
Expand Down

0 comments on commit 7ba70f1

Please sign in to comment.