This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push:
new 67dd096 Add missing values in message
67dd096 is described below
commit 67dd09626131df5b31391e6713b2a39207bcf306
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Jun 14 21:27:02 2021 +0100
Add missing values in message
---
java/org/apache/coyote/http2/Http2UpgradeHandler.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/java/org/apache/coyote/http2/Http2UpgradeHandler.java
b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
index 3e133df..909726e 100644
--- a/java/org/apache/coyote/http2/Http2UpgradeHandler.java
+++ b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
@@ -868,7 +868,8 @@ class Http2UpgradeHandler extends AbstractStream implements
InternalHttpUpgradeH
do {
synchronized (this) {
if (!stream.canWrite()) {
-
stream.doStreamCancel(sm.getString("upgradeHandler.stream.notWritable"),
Http2Error.STREAM_CLOSED);
+
stream.doStreamCancel(sm.getString("upgradeHandler.stream.notWritable",
+ stream.getConnectionId(),
stream.getIdAsString()), Http2Error.STREAM_CLOSED);
}
long windowSize = getWindowSize();
if (windowSize < 1 || backLogSize > 0) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]