in src/main/java/com/epam/gmp/process/QueuedProcessService.java [49:57]
public void initialize() {
queue = new ArrayBlockingQueue<>(startPullers);
threadPool = new QueuedProcessThreadPoolExecutor(corePullers, startPullers, 30L, TimeUnit.SECONDS, queue);
if (logger.isInfoEnabled()) {
logger.info("Prepared Groovy thread pool of {} pullers; concurrent: {}", startPullers, corePullers);
logger.info("Initialized.");
}
}