HBASE-21354 Addendum fix compile error
This commit is contained in:
parent
86f23128b0
commit
603bf4c551
|
@ -96,9 +96,15 @@ public class ProcedureTestingUtility {
|
||||||
|
|
||||||
public static <TEnv> void restart(ProcedureExecutor<TEnv> procExecutor,
|
public static <TEnv> void restart(ProcedureExecutor<TEnv> procExecutor,
|
||||||
boolean avoidTestKillDuringRestart, boolean failOnCorrupted, Callable<Void> stopAction,
|
boolean avoidTestKillDuringRestart, boolean failOnCorrupted, Callable<Void> stopAction,
|
||||||
Callable<Void> actionBeforeStartWorker, Callable<Void> startAction,
|
Callable<Void> actionBeforeStartWorker, Callable<Void> startAction) throws Exception {
|
||||||
boolean abort, boolean startWorkers)
|
restart(procExecutor, avoidTestKillDuringRestart, failOnCorrupted, stopAction,
|
||||||
throws Exception {
|
actionBeforeStartWorker, startAction, false, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static <TEnv> void restart(ProcedureExecutor<TEnv> procExecutor,
|
||||||
|
boolean avoidTestKillDuringRestart, boolean failOnCorrupted, Callable<Void> stopAction,
|
||||||
|
Callable<Void> actionBeforeStartWorker, Callable<Void> startAction, boolean abort,
|
||||||
|
boolean startWorkers) throws Exception {
|
||||||
final ProcedureStore procStore = procExecutor.getStore();
|
final ProcedureStore procStore = procExecutor.getStore();
|
||||||
final int storeThreads = procExecutor.getCorePoolSize();
|
final int storeThreads = procExecutor.getCorePoolSize();
|
||||||
final int execThreads = procExecutor.getCorePoolSize();
|
final int execThreads = procExecutor.getCorePoolSize();
|
||||||
|
|
Loading…
Reference in New Issue