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
The returned error will "short-circuit" the returned publisher and upstream subscriber will not see the HTTP response returned by the remote server. Since the observability instrumentation is done after the global ExchangeFunction (made of the ExchangeFunction of the HTTP connector, plus the ExchangeFilterFunction instances), the instrumentation will not see the response and will not set it on the ClientRequestObservationContext.
This means that while the recorded observations will contain the error returned by the filter, they will miss information about the actual remote server response.
The text was updated successfully, but these errors were encountered:
When a
WebClient
is configured with a customExchangeFilterFunction
like this:The returned error will "short-circuit" the returned publisher and upstream subscriber will not see the HTTP response returned by the remote server. Since the observability instrumentation is done after the global
ExchangeFunction
(made of theExchangeFunction
of the HTTP connector, plus theExchangeFilterFunction
instances), the instrumentation will not see the response and will not set it on theClientRequestObservationContext
.This means that while the recorded observations will contain the error returned by the filter, they will miss information about the actual remote server response.
The text was updated successfully, but these errors were encountered: