YARN-4535. Fix checkstyle error in CapacityScheduler.java (Naganarasimha G R via rohithsharmaks)
(cherry picked from commit 6da6d87872
)
This commit is contained in:
parent
cdd796d199
commit
0492552f30
|
@ -44,6 +44,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 @@ public class CapacityScheduler extends
|
|||
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