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
When sending an HTTP Request using a ReadStream as input of the request's body, then on ReadStream failure the httpClient.send(readStream) method ends up in success. Hiding that the request body was corrupted.
Do you have a reproducer?
Here is a Junit unit test which reproduce the issue:
Uh oh!
There was an error while loading. Please reload this page.
Version
I'm using Vert.x 4.5.14.
Context
When sending an HTTP Request using a
ReadStream
as input of the request's body, then onReadStream
failure thehttpClient.send(readStream)
method ends up in success. Hiding that the request body was corrupted.Do you have a reproducer?
Here is a Junit unit test which reproduce the issue:
Investigation
If I understood correctly, the issue is caused by this line that ignores the result of pipeTo future (which is a failed future):
The text was updated successfully, but these errors were encountered: