You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not a go person. Does the approach above preserve the headers in their original state?
I'm trying to use traefik which apparently leverages this under the hood and it's really causing some issues even though headers are supposed to be case-insensitive.
It makes oxy incompatible with several clients, like the ones using the Amazon S3 API
See the link below for more information:
golang/go#5022
Could you please use the following approach ?
func CopyHeaders(dst, src http.Header) {
for k, vv := range src {
for _, v := range vv {
dat[k] = v
}
}
The text was updated successfully, but these errors were encountered: