We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent accfda7 commit a09ef3cCopy full SHA for a09ef3c
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/SaslMechanismFactory.java
@@ -49,8 +49,8 @@ private static synchronized String getSynchronously() {
49
LOG.debug("{} = {} (conf)", HADOOP_SECURITY_SASL_MECHANISM_KEY, confValue);
50
51
// conf has a higher precedence than conf
52
- mechanism = confValue != null ? envValue
53
- : envValue != null ? confValue
+ mechanism = confValue != null ? confValue
+ : envValue != null ? envValue
54
: HADOOP_SECURITY_SASL_MECHANISM_DEFAULT;
55
LOG.debug("SASL_MECHANISM = {} (effective)", mechanism);
56
return mechanism;
0 commit comments