You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/10/15 09:50:41 UTC

[tomcat] branch 9.0.x updated: Don't create UpgradeGroupInfo for h2 - it uses RequestGroupInfo

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new e61d382  Don't create UpgradeGroupInfo for h2 - it uses RequestGroupInfo
e61d382 is described below

commit e61d3825a484204853ab04ca4489b76fd4793521
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 4743b05..0167b05 100644
--- a/java/org/apache/coyote/http2/Http2Protocol.java
+++ b/java/org/apache/coyote/http2/Http2Protocol.java
@@ -133,7 +133,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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org