You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mw...@apache.org on 2018/04/27 16:56:37 UTC

[accumulo] branch master updated: #408 - Fixed Kerberos ITs (#445)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d573f18   #408 - Fixed Kerberos ITs (#445)
d573f18 is described below

commit d573f1876e2148d6fe3c78e44e1b98bea3161afd
Author: Mike Walch <mw...@apache.org>
AuthorDate: Fri Apr 27 12:56:34 2018 -0400

     #408 - Fixed Kerberos ITs (#445)
---
 .../main/java/org/apache/accumulo/core/rpc/SaslConnectionParams.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/rpc/SaslConnectionParams.java b/core/src/main/java/org/apache/accumulo/core/rpc/SaslConnectionParams.java
index 3d81e0c..13300f1 100644
--- a/core/src/main/java/org/apache/accumulo/core/rpc/SaslConnectionParams.java
+++ b/core/src/main/java/org/apache/accumulo/core/rpc/SaslConnectionParams.java
@@ -184,8 +184,7 @@ public class SaslConnectionParams {
     this.saslProperties.put(Sasl.QOP, this.qop.getQuality());
 
     // The primary from the KRB principal on each server (e.g. primary/instance@realm)
-    this.kerberosServerPrimary = properties
-        .getProperty(ClientProperty.SASL_KERBEROS_SERVER_PRIMARY.getKey());
+    this.kerberosServerPrimary = ClientProperty.SASL_KERBEROS_SERVER_PRIMARY.getValue(properties);
   }
 
   public Map<String,String> getSaslProperties() {

-- 
To stop receiving notification emails like this one, please contact
mwalch@apache.org.