File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ type HTTPClientConfig struct {
323
323
ProxyConfig `yaml:",inline"`
324
324
// HTTPHeaders specify headers to inject in the requests. Those headers
325
325
// could be marshalled back to the users.
326
- HTTPHeaders * Headers `yaml:"http_headers" json:"http_headers"`
326
+ HTTPHeaders * Headers `yaml:"http_headers,omitempty " json:"http_headers,omitempty "`
327
327
}
328
328
329
329
// SetDirectory joins any relative file paths with dir.
Original file line number Diff line number Diff line change @@ -2023,7 +2023,6 @@ func TestHTTPClientConfig_Marshal(t *testing.T) {
2023
2023
proxy_url: "http://localhost:8080"
2024
2024
follow_redirects: false
2025
2025
enable_http2: false
2026
- http_headers: null
2027
2026
` , string (actualYAML ))
2028
2027
2029
2028
// Unmarshalling the YAML should get the same struct in input.
@@ -2040,8 +2039,7 @@ http_headers: null
2040
2039
"proxy_url":"http://localhost:8080",
2041
2040
"tls_config":{"insecure_skip_verify":false},
2042
2041
"follow_redirects":false,
2043
- "enable_http2":false,
2044
- "http_headers":null
2042
+ "enable_http2":false
2045
2043
}` , string (actualJSON ))
2046
2044
2047
2045
// Unmarshalling the JSON should get the same struct in input.
You can’t perform that action at this time.
0 commit comments