Ver Fonte

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

zhouwenfeng há 5 anos atrás
pai
commit
ff357882ac
1 ficheiros alterados com 1 adições e 1 exclusões
  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)
 			}
 		},
 	}