You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by co...@apache.org on 2017/02/21 09:12:12 UTC

ranger git commit: RANGER-1396:There are error logs in SecureClientLogin class

Repository: ranger
Updated Branches:
  refs/heads/master 3f6da35ff -> 52ecc0073


RANGER-1396:There are error logs in SecureClientLogin class

Signed-off-by: Colm O hEigeartaigh <co...@apache.org>


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

Branch: refs/heads/master
Commit: 52ecc0073267d4388968abfe892c163a3537ddd7
Parents: 3f6da35
Author: zhangqiang2 <zh...@zte.com.cn>
Authored: Mon Feb 20 04:41:38 2017 -0500
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Tue Feb 21 09:05:27 2017 +0000

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/security/SecureClientLogin.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/52ecc007/agents-common/src/main/java/org/apache/hadoop/security/SecureClientLogin.java
----------------------------------------------------------------------
diff --git a/agents-common/src/main/java/org/apache/hadoop/security/SecureClientLogin.java b/agents-common/src/main/java/org/apache/hadoop/security/SecureClientLogin.java
index 3949350..320a9a4 100644
--- a/agents-common/src/main/java/org/apache/hadoop/security/SecureClientLogin.java
+++ b/agents-common/src/main/java/org/apache/hadoop/security/SecureClientLogin.java
@@ -116,7 +116,7 @@ public class SecureClientLogin {
 			if (!keytabFile.exists()) {
 				LOG.warn(keytabPath + " doesn't exist.");
 			} else if (!keytabFile.canRead()) {
-				LOG.warn("Unable to read " + keytabPath + " Please check the file access permissions for user");
+				LOG.warn("Unable to read " + keytabPath + ". Please check the file access permissions for user");
 			}else{
 				isValid = true;
 			}