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 eb90719 commit 23dd123Copy full SHA for 23dd123
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/SaslConstants.java
@@ -45,7 +45,8 @@ public class SaslConstants {
45
if (mechanism == null) {
46
// conf
47
final Configuration conf = new Configuration();
48
- mechanism = conf.get(HADOOP_SECURITY_SASL_MECHANISM_KEY, HADOOP_SECURITY_SASL_MECHANISM_DEFAULT);
+ mechanism = conf.get(HADOOP_SECURITY_SASL_MECHANISM_KEY,
49
+ HADOOP_SECURITY_SASL_MECHANISM_DEFAULT);
50
}
51
52
SASL_MECHANISM = mechanism != null? mechanism : HADOOP_SECURITY_SASL_MECHANISM_DEFAULT;
0 commit comments