This is an automated email from the ASF dual-hosted git repository.
lihan pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new 7b417e313e Fix BZ 66602 - skip sending the WINDOW_UPDATE frame if the
increment is zero.
7b417e313e is described below
commit 7b417e313e419f55459d90af7a713578359ac853
Author: ledefe <[email protected]>
AuthorDate: Fri May 19 13:24:50 2023 +0800
Fix BZ 66602 - skip sending the WINDOW_UPDATE frame if the increment is
zero.
Closes #619
https://bz.apache.org/bugzilla/show_bug.cgi?id=66602
---
java/org/apache/coyote/http2/Http2UpgradeHandler.java | 4 +++-
webapps/docs/changelog.xml | 5 +++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/java/org/apache/coyote/http2/Http2UpgradeHandler.java
b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
index 0e280deb45..ec3e098c0d 100644
--- a/java/org/apache/coyote/http2/Http2UpgradeHandler.java
+++ b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
@@ -1522,7 +1522,9 @@ class Http2UpgradeHandler extends AbstractStream
implements InternalHttpUpgradeH
// the call to this method. This means the bytes read will have
been
// written to the original stream and, effectively, swallowed.
// Therefore, need to notify that those bytes were swallowed here.
- onSwallowedDataFramePayload(streamId, dataLength);
+ if (dataLength>0) {
+ onSwallowedDataFramePayload(streamId, dataLength);
+ }
}
}
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index f38a017f6d..57d5bc3c11 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -128,6 +128,11 @@
defined in RFC 9218 rather than the one defined in RFC 7540.
(markt)
</update>
+ <fix>
+ <bug>66602</bug>: not sending WINDOW_UPDATE when dataLength is ZERO
+ on call SwallowedDataFramePayload. Pull request #619 by
+ ledefe. (lihan)
+ </fix>
</changelog>
</subsection>
<subsection name="Other">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]