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
The following commit(s) were added to refs/heads/master by this push: new 6cb35bd Don't create UpgradeGroupInfo for h2 - it uses RequestGroupInfo 6cb35bd is described below commit 6cb35bd585faa15e1a9ef52dfc1512fc9079be53 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Oct 15 10:48:10 2020 +0100 Don't create UpgradeGroupInfo for h2 - it uses RequestGroupInfo --- java/org/apache/coyote/http2/Http2Protocol.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/coyote/http2/Http2Protocol.java b/java/org/apache/coyote/http2/Http2Protocol.java index 5c4e5e0..51ed086 100644 --- a/java/org/apache/coyote/http2/Http2Protocol.java +++ b/java/org/apache/coyote/http2/Http2Protocol.java @@ -117,7 +117,7 @@ public class Http2Protocol implements UpgradeProtocol { String upgradeProtocol = getUpgradeProtocolName(); UpgradeProcessorInternal processor = new UpgradeProcessorInternal(socketWrapper, new UpgradeToken(getInternalUpgradeHandler(socketWrapper, adapter, null), null, null, upgradeProtocol), - http11Protocol.getUpgradeGroupInfo(upgradeProtocol)); + null); return processor; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org