Skip to content

Commit

Permalink
Merge pull request #21842 from pedroigor/issue-21841
Browse files Browse the repository at this point in the history
End Vert.x response before propagating mapped exception in VertxBlockingoutput
  • Loading branch information
geoand authored Dec 2, 2021
2 parents 673a9d6 + 8bea56c commit 79d8125
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public void write(ByteBuf data, boolean last) throws IOException {
if (data != null && data.refCnt() > 0) {
data.release();
}
request.response().end();
throw new IOException(throwable);
}
try {
Expand Down

0 comments on commit 79d8125

Please sign in to comment.