You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2017/01/27 23:14:10 UTC

[1/4] hbase git commit: HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Repository: hbase
Updated Branches:
  refs/heads/branch-1 3dc03ccfb -> c937e9786
  refs/heads/branch-1.2 c0a340307 -> 466cc9f62
  refs/heads/branch-1.3 748f5b5b9 -> f0c2cf938
  refs/heads/master ad8e6c831 -> bd8a4d5fa


HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/branch-1
Commit: c937e9786431dac7f9dc313e6f9eef08db994a42
Parents: 3dc03cc
Author: Sukumar Maddineni <sm...@salesforce.com>
Authored: Wed Jan 25 14:08:22 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Jan 27 15:13:56 2017 -0800

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c937e978/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
index 24ee5e3..8b0fa70 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
@@ -112,8 +112,8 @@ public class HBaseSaslRpcServer {
         UserGroupInformation user = null;
         user = tokenIdentifier.getUser(); // may throw exception
         connection.attemptingUser = user;
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("SASL server DIGEST-MD5 callback: setting password "
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("SASL server DIGEST-MD5 callback: setting password "
               + "for client: " + tokenIdentifier.getUser());
         }
         pc.setPassword(password);
@@ -127,10 +127,10 @@ public class HBaseSaslRpcServer {
           ac.setAuthorized(false);
         }
         if (ac.isAuthorized()) {
-          if (LOG.isDebugEnabled()) {
+          if (LOG.isTraceEnabled()) {
             String username =
               getIdentifier(authzid, secretManager).getUser().getUserName();
-            LOG.debug("SASL server DIGEST-MD5 callback: setting "
+            LOG.trace("SASL server DIGEST-MD5 callback: setting "
                 + "canonicalized client ID: " + username);
           }
           ac.setAuthorizedID(authzid);


[4/4] hbase git commit: HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Posted by ap...@apache.org.
HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/master
Commit: bd8a4d5fadec1dd804aa7eb0a185a492a6f5805a
Parents: ad8e6c8
Author: Sukumar Maddineni <sm...@salesforce.com>
Authored: Wed Jan 25 14:08:22 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Jan 27 15:14:00 2017 -0800

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/bd8a4d5f/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
index b0cf70b..cfb0e02 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
@@ -119,8 +119,8 @@ public class HBaseSaslRpcServer {
         UserGroupInformation user = null;
         user = tokenIdentifier.getUser(); // may throw exception
         connection.attemptingUser = user;
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("SASL server DIGEST-MD5 callback: setting password "
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("SASL server DIGEST-MD5 callback: setting password "
               + "for client: " + tokenIdentifier.getUser());
         }
         pc.setPassword(password);
@@ -134,10 +134,10 @@ public class HBaseSaslRpcServer {
           ac.setAuthorized(false);
         }
         if (ac.isAuthorized()) {
-          if (LOG.isDebugEnabled()) {
+          if (LOG.isTraceEnabled()) {
             String username =
               getIdentifier(authzid, secretManager).getUser().getUserName();
-            LOG.debug("SASL server DIGEST-MD5 callback: setting "
+            LOG.trace("SASL server DIGEST-MD5 callback: setting "
                 + "canonicalized client ID: " + username);
           }
           ac.setAuthorizedID(authzid);


[3/4] hbase git commit: HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Posted by ap...@apache.org.
HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/branch-1.3
Commit: f0c2cf938cdbd1172faef2ef646a601882ae5400
Parents: 748f5b5
Author: Sukumar Maddineni <sm...@salesforce.com>
Authored: Wed Jan 25 14:08:22 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Jan 27 15:13:58 2017 -0800

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f0c2cf93/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
index b9e56d9..56e035e 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
@@ -111,8 +111,8 @@ public class HBaseSaslRpcServer {
         UserGroupInformation user = null;
         user = tokenIdentifier.getUser(); // may throw exception
         connection.attemptingUser = user;
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("SASL server DIGEST-MD5 callback: setting password "
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("SASL server DIGEST-MD5 callback: setting password "
               + "for client: " + tokenIdentifier.getUser());
         }
         pc.setPassword(password);
@@ -126,10 +126,10 @@ public class HBaseSaslRpcServer {
           ac.setAuthorized(false);
         }
         if (ac.isAuthorized()) {
-          if (LOG.isDebugEnabled()) {
+          if (LOG.isTraceEnabled()) {
             String username =
               getIdentifier(authzid, secretManager).getUser().getUserName();
-            LOG.debug("SASL server DIGEST-MD5 callback: setting "
+            LOG.trace("SASL server DIGEST-MD5 callback: setting "
                 + "canonicalized client ID: " + username);
           }
           ac.setAuthorizedID(authzid);


[2/4] hbase git commit: HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Posted by ap...@apache.org.
HBASE-17540 Change SASL server GSSAPI callback log line from DEBUG to TRACE in RegionServer

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/466cc9f6
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/466cc9f6
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/466cc9f6

Branch: refs/heads/branch-1.2
Commit: 466cc9f624647b1e1fdb84eb0b5e9fd20068c195
Parents: c0a3403
Author: Sukumar Maddineni <sm...@salesforce.com>
Authored: Wed Jan 25 14:08:22 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Jan 27 15:13:57 2017 -0800

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/466cc9f6/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
index b9e56d9..56e035e 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/HBaseSaslRpcServer.java
@@ -111,8 +111,8 @@ public class HBaseSaslRpcServer {
         UserGroupInformation user = null;
         user = tokenIdentifier.getUser(); // may throw exception
         connection.attemptingUser = user;
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("SASL server DIGEST-MD5 callback: setting password "
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("SASL server DIGEST-MD5 callback: setting password "
               + "for client: " + tokenIdentifier.getUser());
         }
         pc.setPassword(password);
@@ -126,10 +126,10 @@ public class HBaseSaslRpcServer {
           ac.setAuthorized(false);
         }
         if (ac.isAuthorized()) {
-          if (LOG.isDebugEnabled()) {
+          if (LOG.isTraceEnabled()) {
             String username =
               getIdentifier(authzid, secretManager).getUser().getUserName();
-            LOG.debug("SASL server DIGEST-MD5 callback: setting "
+            LOG.trace("SASL server DIGEST-MD5 callback: setting "
                 + "canonicalized client ID: " + username);
           }
           ac.setAuthorizedID(authzid);