proxy: Fix policy reload regression (#396)

* Fix policy reload regression

* Update changelog
This commit is contained in:
Travis Groth 2019-11-22 19:28:36 -05:00 committed by GitHub
parent 8164cfd85a
commit f20d913abe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 2 deletions

View file

@ -302,3 +302,7 @@ func (p *Proxy) roundTripperFromPolicy(policy *config.Policy) http.RoundTripper
}
return c.Then(transport)
}
func (p *Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) {
p.Handler.ServeHTTP(w, r)
}