YARN-10948. Rename SchedulerQueue#activeQueue to activateQueue. Contributed by Adam Antal
This commit is contained in:
parent
2c37bebac4
commit
23772d946b
|
@ -77,7 +77,7 @@ public class QueueStateManager<T extends SchedulerQueue,
|
|||
throw new YarnException("The specified queue:" + queueName
|
||||
+ " does not exist!");
|
||||
}
|
||||
queue.activeQueue();
|
||||
queue.activateQueue();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue