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
Currently, when logging errors around requests not being completed, such as Incomplete Http Call Timeouts, the content length that is logged is always 0.
Currently, when logging errors around requests not being completed, such as Incomplete Http Call Timeouts, the content length that is logged is always 0.
This is expected behavior based on java docs:
riposte/riposte-spi/src/main/java/com/nike/riposte/server/http/RequestInfo.java
Lines 142 to 149 in 2e57e93
and implementation at
riposte/riposte-spi/src/main/java/com/nike/riposte/server/http/impl/RequestInfoImpl.java
Lines 215 to 220 in 2e57e93
It is coded to return 0 until the request is completed.
Enabling a method to get the current request size in these error scenarios would be helpful and provide insights.
The text was updated successfully, but these errors were encountered: