HADOOP-10249. LdapGroupsMapping should trim ldap password read from file. Contributed by Dilli Armugam.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1568164 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c122ef9000
commit
9d89fb8ca1
|
@ -339,6 +339,9 @@ Release 2.4.0 - UNRELEASED
|
|||
HADOOP-10338. Cannot get the FileStatus of the root inode from the new
|
||||
Globber (cmccabe)
|
||||
|
||||
HADOOP-10249. LdapGroupsMapping should trim ldap password read from file.
|
||||
(Dilli Armugam via suresh)
|
||||
|
||||
Release 2.3.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -356,7 +356,7 @@ public class LdapGroupsMapping
|
|||
c = reader.read();
|
||||
}
|
||||
reader.close();
|
||||
return password.toString();
|
||||
return password.toString().trim();
|
||||
} catch (IOException ioe) {
|
||||
throw new RuntimeException("Could not read password file: " + pwFile, ioe);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue