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
Our endpoint receives the PUT request with JSON body from mobile clients. As mobile network may be unstable some requests are interrupted before receiving the full request body.
We set NettyConfig.requestTimeout to 5s to make sure we close the connection from the server side. Then channel is marked inactive. When org.playframework.netty.HandlerPublisher receives channelInactive it completes by calling SimpleSubscriber.onComplete which sends all received bytes. As a result corrupted JSON is passed to the Codec.
What is the problem?
I'd propose if the number of bytes received is lower than the expected content length do not pass the bytes to the codec
The text was updated successfully, but these errors were encountered:
Tapir version: 1.11.7
Scala version: 3.5.0
Our endpoint receives the PUT request with JSON body from mobile clients. As mobile network may be unstable some requests are interrupted before receiving the full request body.
We set
NettyConfig.requestTimeout
to 5s to make sure we close the connection from the server side. Then channel is marked inactive. Whenorg.playframework.netty.HandlerPublisher
receiveschannelInactive
it completes by callingSimpleSubscriber.onComplete
which sends all received bytes. As a result corrupted JSON is passed to the Codec.What is the problem?
I'd propose if the number of bytes received is lower than the expected content length do not pass the bytes to the codec
The text was updated successfully, but these errors were encountered: