MAPREDUCE-6855. Specify charset when create String in CredentialsTestJob. Contributed by Kai Sasaki.
(cherry picked from commit14413989ca
) (cherry picked from commitaa1f944bba
)
This commit is contained in:
parent
ff706261be
commit
8b5307c0e7
|
@ -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)){
|
||||
|
|
Loading…
Reference in New Issue