Skip to content

Commit

Permalink
[#4477]Fix GoAway issue in Http2 after many requests timeout (#4508)
Browse files Browse the repository at this point in the history
  • Loading branch information
liubao68 authored Sep 2, 2024
1 parent 3797ef4 commit ac905a5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ public void flushBuffer() {
}

public void internalFlushBuffer() {
if (serverResponse.closed()) {
return;
}
if (bodyBuffer == null) {
serverResponse.end();
return;
Expand Down

0 comments on commit ac905a5

Please sign in to comment.