HADOOP-10249. Merge 1568164 from trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1568166 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
62cc4908c5
commit
42ebc843e9
|
@ -41,6 +41,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