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
In the Forwarder class, the handler holding the HttpClientResponseis called twice for every request.
This is visible when a log statement is added and with enabled micrometer metrics it is also visible in the gateleen_forwarded_seconds_count and gateleen_forwarded_seconds_sum entries
In this example, 1 request with a delay of 2 seconds was made. The sum is twice the 2 seconds and also the count is double of the effectively executed requests.
In the Forwarder class, the handler holding the
HttpClientResponse
is called twice for every request.This is visible when a log statement is added and with enabled micrometer metrics it is also visible in the
gateleen_forwarded_seconds_count
andgateleen_forwarded_seconds_sum
entriesIn this example, 1 request with a delay of 2 seconds was made. The sum is twice the 2 seconds and also the count is double of the effectively executed requests.
Calling the response handler twice could also have other impacts which where not yet revealed.
The text was updated successfully, but these errors were encountered: