You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by et...@apache.org on 2020/06/04 14:32:40 UTC

[storm] branch master updated: STORM-3644 update pacemaker connection error log

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

ethanli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/master by this push:
     new 488af7a  STORM-3644 update pacemaker connection error log
     new 6c805ac  Merge pull request #3279 from agresch/agresch_storm_3644
488af7a is described below

commit 488af7a49c978a4598b3f5a7e13ae87440d6a328
Author: Aaron Gresch <ag...@yahoo-inc.com>
AuthorDate: Tue Jun 2 15:58:27 2020 -0500

    STORM-3644 update pacemaker connection error log
---
 storm-client/src/jvm/org/apache/storm/pacemaker/PacemakerClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storm-client/src/jvm/org/apache/storm/pacemaker/PacemakerClient.java b/storm-client/src/jvm/org/apache/storm/pacemaker/PacemakerClient.java
index 298524e..4d8e6b5 100644
--- a/storm-client/src/jvm/org/apache/storm/pacemaker/PacemakerClient.java
+++ b/storm-client/src/jvm/org/apache/storm/pacemaker/PacemakerClient.java
@@ -182,7 +182,7 @@ public class PacemakerClient implements ISaslClient {
                     if (retry <= 0) {
                         throw e;
                     }
-                    LOG.error("error attempting to write to a channel {}.", e.getMessage());
+                    LOG.error("Error attempting to write to a channel to host {} - {}", host, e.getMessage());
                 }
                 if (retry <= 0) {
                     throw new PacemakerConnectionException("couldn't get response after " + maxRetries + " attempts.");