YARN-4535. Fix checkstyle error in CapacityScheduler.java (Naganarasimha G R via rohithsharmaks)
This commit is contained in:
parent
778146eaae
commit
6da6d87872
@ -102,6 +102,9 @@ Release 2.9.0 - UNRELEASED
|
||||
YARN-4530. LocalizedResource trigger a NPE Cause the NodeManager exit
|
||||
(tangshangwen via rohithsharmaks)
|
||||
|
||||
YARN-4535. Fix checkstyle error in CapacityScheduler.java
|
||||
(Naganarasimha G R via rohithsharmaks)
|
||||
|
||||
Release 2.8.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -647,10 +647,10 @@ static CSQueue parseQueue(
|
||||
parentQueue.setChildQueues(childQueues);
|
||||
}
|
||||
|
||||
if(queue instanceof LeafQueue == true && queues.containsKey(queueName)
|
||||
&& queues.get(queueName) instanceof LeafQueue == true) {
|
||||
if (queue instanceof LeafQueue && queues.containsKey(queueName)
|
||||
&& queues.get(queueName) instanceof LeafQueue) {
|
||||
throw new IOException("Two leaf queues were named " + queueName
|
||||
+ ". Leaf queue names must be distinct");
|
||||
+ ". Leaf queue names must be distinct");
|
||||
}
|
||||
queues.put(queueName, queue);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user