mirror of https://github.com/grafana/grafana.git
fix(data source proxy): clear proxies request from cookies, fixes #2470
This commit is contained in:
parent
1b2c1270a8
commit
19f64bc561
|
|
@ -53,6 +53,10 @@ func NewReverseProxy(ds *m.DataSource, proxyPath string) *httputil.ReverseProxy
|
|||
if ds.BasicAuth {
|
||||
req.Header.Add("Authorization", util.GetBasicAuthHeader(ds.BasicAuthUser, ds.BasicAuthPassword))
|
||||
}
|
||||
|
||||
// clear cookie headers
|
||||
req.Header.Del("Cookie")
|
||||
req.Header.Del("Set-Cookie")
|
||||
}
|
||||
|
||||
return &httputil.ReverseProxy{Director: director}
|
||||
|
|
|
|||
Loading…
Reference in New Issue