Explorar el Código

use Set() instead of Add() when attaching additional headers

zhouwenfeng hace 5 años
padre
commit
ff357882ac
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      models/plugin/https2http.go

+ 1 - 1
models/plugin/https2http.go

@@ -86,7 +86,7 @@ func NewHTTPS2HTTPPlugin(params map[string]string) (Plugin, error) {
 				req.Host = p.hostHeaderRewrite
 			}
 			for k, v := range p.headers {
-				req.Header.Add(k, v)
+				req.Header.Set(k, v)
 			}
 		},
 	}