envoy: forward claim and assertion headers (#739)

This commit is contained in:
Caleb Doxsey 2020-05-20 10:02:12 -06:00 committed by GitHub
parent 2275bb8ad4
commit f40fb3d2ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -117,7 +117,7 @@ func (p *Proxy) Verify(verifyOnly bool) http.Handler {
}
original := p.getOriginalRequest(r, uri)
authorized, err := p.isAuthorized(original)
authorized, err := p.isAuthorized(w, original)
if err != nil {
return httputil.NewError(http.StatusBadRequest, err)
}