You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On events like a request timeout, Envoy sends a locally generated response (the sendLocalReply function). But it doesn't use the response_headers_to_add config option. Which could be useful when response_headers_to_add has some diagnostic information (e.g. the %REQ(x-request-id)% which was added in #8683)
We can fix this by adding finalizeResponseHeaders calls before sendLocalReply calls, in functions like onUpstreamAbort.
The text was updated successfully, but these errors were encountered:
On events like a request timeout, Envoy sends a locally generated response (the
sendLocalReply
function). But it doesn't use theresponse_headers_to_add
config option. Which could be useful whenresponse_headers_to_add
has some diagnostic information (e.g. the%REQ(x-request-id)%
which was added in #8683)We can fix this by adding
finalizeResponseHeaders
calls beforesendLocalReply
calls, in functions likeonUpstreamAbort
.The text was updated successfully, but these errors were encountered: