This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 23f8eb5c42c6e4bd3c877a95083020912ee67eb1 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 0903f04..eaf7e88 100644 --- a/java/org/apache/coyote/http2/Http2UpgradeHandler.java +++ b/java/org/apache/coyote/http2/Http2UpgradeHandler.java @@ -747,7 +747,7 @@ class Http2UpgradeHandler extends AbstractStream implements InternalHttpUpgradeH 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(); @@ -1251,7 +1251,7 @@ class Http2UpgradeHandler extends AbstractStream implements InternalHttpUpgradeH // 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