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:
Suresh Srinivas 2014-02-13 23:46:16 +00:00
parent c122ef9000
commit 9d89fb8ca1
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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);
}