Skip to content

Commit a07d1ca

Browse files
authored
fix: redact.URL uses (*URL).Redacted to omit basic-auth password (#1947)
1 parent 00f182b commit a07d1ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/redact/redact.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func Error(err error) error {
5151
if perr != nil {
5252
return err // If the URL can't be parsed, just return the original error.
5353
}
54-
uerr.URL = URL(u).String() // Update the URL to the redacted URL.
54+
uerr.URL = URL(u) // Update the URL to the redacted URL.
5555
return uerr
5656
}
5757

@@ -73,7 +73,7 @@ var paramAllowlist = map[string]struct{}{
7373
}
7474

7575
// URL redacts potentially sensitive query parameter values from the URL's query string.
76-
func URL(u *url.URL) *url.URL {
76+
func URL(u *url.URL) string {
7777
qs := u.Query()
7878
for k, v := range qs {
7979
for i := range v {
@@ -85,5 +85,5 @@ func URL(u *url.URL) *url.URL {
8585
}
8686
r := *u
8787
r.RawQuery = qs.Encode()
88-
return &r
88+
return r.Redacted()
8989
}

0 commit comments

Comments
 (0)