YARN-2042. String shouldn't be compared using == in QueuePlacementRule#NestedUserQueue#getQueueForApp (Chen He via Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1594482 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
84dfae2f8a
commit
561c014e77
|
@ -117,6 +117,9 @@ Release 2.5.0 - UNRELEASED
|
||||||
YARN-2016. Fix a bug in GetApplicationsRequestPBImpl to add the missed fields
|
YARN-2016. Fix a bug in GetApplicationsRequestPBImpl to add the missed fields
|
||||||
to proto. (Junping Du via jianhe)
|
to proto. (Junping Du via jianhe)
|
||||||
|
|
||||||
|
YARN-2042. String shouldn't be compared using == in
|
||||||
|
QueuePlacementRule#NestedUserQueue#getQueueForApp (Chen He via Sandy Ryza)
|
||||||
|
|
||||||
Release 2.4.1 - UNRELEASED
|
Release 2.4.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -227,7 +227,7 @@ public abstract class QueuePlacementRule {
|
||||||
String queueName = nestedRule.assignAppToQueue(requestedQueue, user,
|
String queueName = nestedRule.assignAppToQueue(requestedQueue, user,
|
||||||
groups, configuredQueues);
|
groups, configuredQueues);
|
||||||
|
|
||||||
if (queueName != null && queueName != "") {
|
if (queueName != null && queueName.length() != 0) {
|
||||||
if (!queueName.startsWith("root.")) {
|
if (!queueName.startsWith("root.")) {
|
||||||
queueName = "root." + queueName;
|
queueName = "root." + queueName;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue