in src/main/java/com/epam/grid/engine/provider/queue/slurm/SlurmQueueProvider.java [303:314]
private Context prepareContext(final QueueVO registrationRequest) {
final Context context = new Context();
context.setVariable(SCONTROL_ACTION, SCONTROL_CREATE_COMMAND);
if (registrationRequest.getAllowedUserGroups() != null) {
context.setVariable(SCONTROL_USER_GROUPS, registrationRequest.getAllowedUserGroups());
}
if (registrationRequest.getHostList() != null) {
context.setVariable(SCONTROL_HOSTS, registrationRequest.getHostList());
}
context.setVariable(SCONTROL_PARTITION_NAME, registrationRequest.getName());
return context;
}