Skip to content

Commit d64a747

Browse files
author
Julien
committed
Remove secret file existence check in Validate for headers
This commit removes the check for the existence of the secret file for headers in the `Validate` function. The check is not valid for relative paths since `Validate` is called before `SetDirectory`, which is responsible for setting up the environment. This change aligns with the handling of other secret files, which are not checked during config validation. Signed-off-by: Julien <[email protected]>
1 parent 06c2425 commit d64a747

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

config/headers.go

+1-8
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,10 @@ func (h *Headers) SetDirectory(dir string) {
7878

7979
// Validate validates the Headers config.
8080
func (h *Headers) Validate() error {
81-
for n, header := range h.Headers {
81+
for n := range h.Headers {
8282
if _, ok := reservedHeaders[http.CanonicalHeaderKey(n)]; ok {
8383
return fmt.Errorf("setting header %q is not allowed", http.CanonicalHeaderKey(n))
8484
}
85-
for _, v := range header.Files {
86-
f := JoinDir(h.dir, v)
87-
_, err := os.ReadFile(f)
88-
if err != nil {
89-
return fmt.Errorf("unable to read header %q from file %s: %w", http.CanonicalHeaderKey(n), f, err)
90-
}
91-
}
9285
}
9386
return nil
9487
}

config/http_config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ type basicAuthRoundTripper struct {
828828

829829
// NewBasicAuthRoundTripper will apply a BASIC auth authorization header to a request unless it has
830830
// already been set.
831-
func NewBasicAuthRoundTripper(username SecretReader, password SecretReader, rt http.RoundTripper) http.RoundTripper {
831+
func NewBasicAuthRoundTripper(username, password SecretReader, rt http.RoundTripper) http.RoundTripper {
832832
return &basicAuthRoundTripper{username, password, rt}
833833
}
834834

config/http_config_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ func getCertificateBlobs(t *testing.T) map[string][]byte {
11071107
return bs
11081108
}
11091109

1110-
func writeCertificate(bs map[string][]byte, src string, dst string) {
1110+
func writeCertificate(bs map[string][]byte, src, dst string) {
11111111
b, ok := bs[src]
11121112
if !ok {
11131113
panic(fmt.Sprintf("Couldn't find %q in bs", src))

0 commit comments

Comments
 (0)