in src/main/java/com/epam/grid/engine/provider/parallelenv/sge/SgeParallelEnvProvider.java [107:119]
public SgeParallelEnvProvider(final SgeParallelEnvMapper parallelEnvMapper,
final SimpleCmdExecutor simpleCmdExecutor,
final GridEngineCommandCompiler commandCompiler,
@Value("${sge.parallel.environment.registration.default.slots:999}")
final String peRegistrationDefaultSlots,
@Value("${sge.parallel.environment.registration.default.allocation.rule:$fill_up}")
final String peRegistrationDefaultAllocationRule) {
this.parallelEnvMapper = parallelEnvMapper;
this.simpleCmdExecutor = simpleCmdExecutor;
this.commandCompiler = commandCompiler;
this.peRegistrationDefaultSlots = peRegistrationDefaultSlots;
this.peRegistrationDefaultAllocationRule = peRegistrationDefaultAllocationRule;
}