YARN-960. Fixed ResourceManager to propagate client-submitted credentials irrespective of security. Contributed by Daryn Sharp.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1507700 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ac3c1245c7
commit
ae8f07d47b
|
@ -754,6 +754,9 @@ Release 2.1.0-beta - 2013-07-02
|
|||
YARN-688. Fixed NodeManager to properly cleanup containers when it is shut
|
||||
down. (Jian He via vinodkv)
|
||||
|
||||
YARN-960. Fixed ResourceManager to propagate client-submitted credentials
|
||||
irrespective of security. (Daryn Sharp via vinodkv)
|
||||
|
||||
BREAKDOWN OF HADOOP-8562/YARN-191 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
YARN-158. Yarn creating package-info.java must not depend on sh.
|
||||
|
|
|
@ -216,16 +216,11 @@ public class AMLauncher implements Runnable {
|
|||
applicationId).getMaxAppAttempts()));
|
||||
|
||||
Credentials credentials = new Credentials();
|
||||
|
||||
if (UserGroupInformation.isSecurityEnabled()) {
|
||||
// TODO: Security enabled/disabled info should come from RM.
|
||||
|
||||
DataInputByteBuffer dibb = new DataInputByteBuffer();
|
||||
if (container.getTokens() != null) {
|
||||
// TODO: Don't do this kind of checks everywhere.
|
||||
dibb.reset(container.getTokens());
|
||||
credentials.readTokenStorageStream(dibb);
|
||||
}
|
||||
DataInputByteBuffer dibb = new DataInputByteBuffer();
|
||||
if (container.getTokens() != null) {
|
||||
// TODO: Don't do this kind of checks everywhere.
|
||||
dibb.reset(container.getTokens());
|
||||
credentials.readTokenStorageStream(dibb);
|
||||
}
|
||||
|
||||
// Add AMRMToken
|
||||
|
|
Loading…
Reference in New Issue