Skip to content

Commit

Permalink
0005107: Parameter staging.dir should be appended with the engine name
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 26, 2021
1 parent 499b106 commit 214150a
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -416,6 +416,11 @@ protected IStagingManager createStagingManager() {
String directory = parameterService.getString(ParameterConstants.STAGING_DIR);
if (isBlank(directory)) {
directory = parameterService.getTempDirectory();
} else {
String engineName = parameterService.getEngineName();
if (isNotBlank(engineName)) {
directory += File.separator + engineName;
}
}
String stagingManagerClassName = parameterService.getString(ParameterConstants.STAGING_MANAGER_CLASS);
if (stagingManagerClassName != null) {
Expand Down

0 comments on commit 214150a

Please sign in to comment.