瀏覽代碼

YARN-10948. Rename SchedulerQueue#activeQueue to activateQueue. Contributed by Adam Antal

Adam Antal 3 年之前
父節點
當前提交
23772d946b

+ 1 - 1
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/QueueStateManager.java

@@ -77,7 +77,7 @@ public class QueueStateManager<T extends SchedulerQueue,
       throw new YarnException("The specified queue:" + queueName
           + " does not exist!");
     }
-    queue.activeQueue();
+    queue.activateQueue();
   }
 
   /**

+ 2 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/SchedulerQueue.java

@@ -62,8 +62,8 @@ public interface SchedulerQueue<T extends SchedulerQueue> extends Queue {
   void stopQueue();
 
   /**
-   * Active the queue.
+   * Activate the queue.
    * @throws YarnException if the queue can not be activated.
    */
-  void activeQueue() throws YarnException;
+  void activateQueue() throws YarnException;
 }

+ 2 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/AbstractCSQueue.java

@@ -733,7 +733,7 @@ public abstract class AbstractCSQueue implements CSQueue {
       } else {
         if (configuredState == QueueState.RUNNING) {
           try {
-            activeQueue();
+            activateQueue();
           } catch (YarnException ex) {
             throw new IllegalArgumentException(ex.getMessage());
           }
@@ -1322,7 +1322,7 @@ public abstract class AbstractCSQueue implements CSQueue {
   }
 
   @Override
-  public void activeQueue() throws YarnException {
+  public void activateQueue() throws YarnException {
     this.writeLock.lock();
     try {
       if (getState() == QueueState.RUNNING) {