|
@@ -19,6 +19,7 @@
|
|
|
package org.apache.hadoop.mapreduce.security;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
+import java.nio.charset.StandardCharsets;
|
|
|
|
|
|
|
|
|
import org.apache.hadoop.conf.Configuration;
|
|
@@ -64,7 +65,7 @@ public class CredentialsTestJob extends Configured implements Tool {
|
|
|
// fail the test
|
|
|
}
|
|
|
|
|
|
- String secretValueStr = new String (secretValue);
|
|
|
+ String secretValueStr = new String (secretValue, StandardCharsets.UTF_8);
|
|
|
System.out.println(secretValueStr);
|
|
|
|
|
|
if ( !("password"+i).equals(secretValueStr)){
|