Skip to content

Commit

Permalink
0004835: A0004835: Allow spaces in external id
Browse files Browse the repository at this point in the history
allow spaces in external id
  • Loading branch information
joshhicks committed Feb 17, 2021
1 parent 116f279 commit 3aff6be
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -531,7 +531,7 @@ public String getEngineName(Properties properties) {
} else {
engineName = groupId + "-" + externalId;
}
engineName = properties.getProperty(ParameterConstants.ENGINE_NAME, engineName);
engineName = engineName.replaceAll(" ", "_");
String engineExt = "";
int engineNumber = 0;
while (new File(AbstractCommandLauncher.getEnginesDir(), engineName + engineExt
Expand Down

0 comments on commit 3aff6be

Please sign in to comment.