Skip to content

Commit

Permalink
[FLS] Fix completion of responses without payload
Browse files Browse the repository at this point in the history
This was forgotten in eclipse-passage#1258.
  • Loading branch information
HannesWell authored Apr 29, 2024
1 parent 2fda522 commit 7fb8b18
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ private void write(NetResponse response, Request request, Response answer, Callb
}
answer.setStatus(HttpStatus.OK_200);
if (!response.carriesPayload()) {
callback.succeeded();
return;
}
byte[] payload;
Expand Down

0 comments on commit 7fb8b18

Please sign in to comment.