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
commit 11f137718fe8df61fdadc379d5edd6637de44843 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Feb 22 16:30:29 2021 +0000 Add missing parameter in log message. Fix comment typo. --- java/org/apache/coyote/http2/Http2UpgradeHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/org/apache/coyote/http2/Http2UpgradeHandler.java b/java/org/apache/coyote/http2/Http2UpgradeHandler.java index 9f1cd8a..4ee1104 100644 --- a/java/org/apache/coyote/http2/Http2UpgradeHandler.java +++ b/java/org/apache/coyote/http2/Http2UpgradeHandler.java @@ -750,7 +750,7 @@ public class Http2UpgradeHandler extends AbstractStream implements InternalHttpU void writeBody(Stream stream, ByteBuffer data, int len, boolean finished) throws IOException { if (log.isDebugEnabled()) { log.debug(sm.getString("upgradeHandler.writeBody", connectionId, stream.getIdAsString(), - Integer.toString(len))); + Integer.toString(len), Boolean.valueOf(finished))); } reduceOverheadCount(); @@ -1250,7 +1250,7 @@ public class Http2UpgradeHandler extends AbstractStream implements InternalHttpU // work through the ordered list of streams. while (toClose > 0 && parent.getIdAsInt() > 0 && parent.getIdAsInt() < stream.getIdAsInt() && parent.getChildStreams().isEmpty()) { - // This case is safe since we know parent ID > 0 therefore + // This cast is safe since we know parent ID > 0 therefore // this isn't the connection stream = (AbstractNonZeroStream) parent; parent = stream.getParentStream(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org