fix(settings): fix httpproxy.go error message (#1596)

This commit is contained in:
Filippo Buletto
2023-05-27 20:01:55 +02:00
committed by GitHub
parent 9488a9f88a
commit 7ba70f19ef

View File

@@ -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