HADOOP-6622. Token should not print the password in toString.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1156855 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fdd81b2224
commit
7153d50108
|
@ -486,6 +486,8 @@ Trunk (unreleased changes)
|
|||
HADOOP-7357. hadoop.io.compress.TestCodec#main() should exit with
|
||||
non-zero exit code if test failed. (Philip Zeyliger via eli)
|
||||
|
||||
HADOOP-6622. Token should not print the password in toString. (eli)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -238,8 +238,6 @@ public class Token<T extends TokenIdentifier> implements Writable {
|
|||
StringBuilder buffer = new StringBuilder();
|
||||
buffer.append("Ident: ");
|
||||
addBinaryBuffer(buffer, identifier);
|
||||
buffer.append(", Pass: ");
|
||||
addBinaryBuffer(buffer, password);
|
||||
buffer.append(", Kind: ");
|
||||
buffer.append(kind.toString());
|
||||
buffer.append(", Service: ");
|
||||
|
|
Loading…
Reference in New Issue