You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by zt...@apache.org on 2019/09/18 07:19:52 UTC

[hadoop] branch branch-3.1.3 updated: HDFS-14759. HDFS cat logs an info message. Contributed by Eric Badger.

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

ztang pushed a commit to branch branch-3.1.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.1.3 by this push:
     new cd2785c  HDFS-14759. HDFS cat logs an info message. Contributed by Eric Badger.
cd2785c is described below

commit cd2785ceb1bca693bc083060adf8aac149310c6a
Author: Anu Engineer <ae...@apache.org>
AuthorDate: Tue Aug 20 20:24:19 2019 -0700

    HDFS-14759. HDFS cat logs an info message.
    Contributed by Eric Badger.
    
    (cherry picked from commit 8aaf5e1a14e577a7d8142bc7d49bb94014032afd)
---
 .../hadoop/hdfs/protocol/datatransfer/sasl/SaslDataTransferClient.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/sasl/SaslDataTransferClient.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/sasl/SaslDataTransferClient.java
index 0adb41e..50bb39e 100644
--- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/sasl/SaslDataTransferClient.java
+++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/sasl/SaslDataTransferClient.java
@@ -236,7 +236,7 @@ public class SaslDataTransferClient {
       throws IOException {
     boolean localTrusted = trustedChannelResolver.isTrusted();
     boolean remoteTrusted = trustedChannelResolver.isTrusted(addr);
-    LOG.info("SASL encryption trust check: localHostTrusted = {}, "
+    LOG.debug("SASL encryption trust check: localHostTrusted = {}, "
         + "remoteHostTrusted = {}", localTrusted, remoteTrusted);
     if (!localTrusted || !remoteTrusted) {
       // The encryption key factory only returns a key if encryption is enabled.


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org