Skip to content
Snippets Groups Projects
Commit 17ea2ddd authored by juanf's avatar juanf
Browse files

SSDM-5975 : Updating DSS workspace and queues defaults

SVN: 39000
parent cbed6ce7
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,11 @@ public class KeyBasedDataSetCommandExecutorProvider implements IDataSetCommandEx
nameMappings.add(new ExecutorNameMapping("", Pattern.compile(".*")));
this.commandQueueDirPath = StringUtils.isBlank(commandQueueDir) || commandQueueDir.startsWith("${")
? "" : commandQueueDir;
File commandQueueDirPathAsFile = new File(commandQueueDirPath);
if (commandQueueDirPathAsFile.exists() == false)
{
commandQueueDirPathAsFile.mkdirs();
}
}
@Override
......@@ -159,7 +164,6 @@ public class KeyBasedDataSetCommandExecutorProvider implements IDataSetCommandEx
}
return defaultExecutor;
}
@Override
public List<IDataSetCommandExecutor> getAllExecutors()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment