You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2017/07/06 02:39:41 UTC

kudu git commit: java: remove log message causing ITClientStress to fail

Repository: kudu
Updated Branches:
  refs/heads/master 58248841f -> 030e1a1cd


java: remove log message causing ITClientStress to fail

ITClientStress checks that the logs don't contain the word
'SSLException', but a recent change added a debug-level message
indicating it. Since the debug message isn't actionable, this commit
just removes it.

Change-Id: I39c485012254c3bebc57ebc07c620f76e852d9fb
Reviewed-on: http://gerrit.cloudera.org:8080/7357
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <as...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/030e1a1c
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/030e1a1c
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/030e1a1c

Branch: refs/heads/master
Commit: 030e1a1cda097b38c58fde3868e1c3afacb3abff
Parents: 5824884
Author: Todd Lipcon <to...@apache.org>
Authored: Wed Jul 5 17:51:11 2017 -0700
Committer: Alexey Serbin <as...@cloudera.com>
Committed: Thu Jul 6 02:38:54 2017 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/kudu/client/Connection.java            | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/030e1a1c/java/kudu-client/src/main/java/org/apache/kudu/client/Connection.java
----------------------------------------------------------------------
diff --git a/java/kudu-client/src/main/java/org/apache/kudu/client/Connection.java b/java/kudu-client/src/main/java/org/apache/kudu/client/Connection.java
index ea1e113..eea1b82 100644
--- a/java/kudu-client/src/main/java/org/apache/kudu/client/Connection.java
+++ b/java/kudu-client/src/main/java/org/apache/kudu/client/Connection.java
@@ -317,7 +317,6 @@ class Connection extends SimpleChannelUpstreamHandler {
       // bit confused that we are trying to send data and misinterpret it as a
       // renegotiation attempt, and throw an SSLException. So, we just ignore any
       // SSLException if we've already attempted to close.
-      LOG.debug("{} ignoring SSLException: already disconnected", getLogPrefix());
     } else {
       LOG.error("{} unexpected exception from downstream on {}: {}", getLogPrefix(), c, e);
     }