You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2019/05/13 15:28:48 UTC

[tomcat] branch master updated: Add missing connection id to log message

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

remm 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 2a56e14  Add missing connection id to log message
2a56e14 is described below

commit 2a56e147dd36bbb6e701c9458b960d6bf6a42935
Author: remm <re...@apache.org>
AuthorDate: Mon May 13 17:28:30 2019 +0200

    Add missing connection id to log message
---
 java/org/apache/coyote/http2/Http2UpgradeHandler.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/coyote/http2/Http2UpgradeHandler.java b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
index fdc2859..134e501 100644
--- a/java/org/apache/coyote/http2/Http2UpgradeHandler.java
+++ b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
@@ -251,7 +251,7 @@ class Http2UpgradeHandler extends AbstractStream implements InternalHttpUpgradeH
         try {
             pingManager.sendPing(true);
         } catch (IOException ioe) {
-            throw new ProtocolException(sm.getString("upgradeHandler.pingFailed"), ioe);
+            throw new ProtocolException(sm.getString("upgradeHandler.pingFailed", connectionId), ioe);
         }
 
         if (webConnection != null) {


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org