ExecutorPoolTest code should be fine.

But half of tests failed
This commit is contained in:
rahimiankeanu
2021-11-27 12:53:30 +01:00
committed by reynisson
parent e03fc296ee
commit 3c8171af8e
4 changed files with 17 additions and 14 deletions

View File

@@ -18,7 +18,7 @@ public class ExecutorClass {
this.executorTaskType = executorTaskType;
}
protected static ExecutorClass createExecutorClass(ExecutorUri executorUri, ExecutorTaskType executorTaskType){
public static ExecutorClass createExecutorClass(ExecutorUri executorUri, ExecutorTaskType executorTaskType){
System.out.println("New Executor: " + executorUri.value.toString() + " " + executorTaskType.getValue());
return new ExecutorClass(executorUri, executorTaskType);
}