Skip to content

Commit e8e0656

Browse files
- do not delete processed/<data-resource-id> directory so that we can obtain the pipeline jar log.
1 parent bcd3083 commit e8e0656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-app/services/au/org/ala/spatial/SandboxService.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ class SandboxService {
570570
File processedDir = new File(spatialConfig.data.dir + "/sandbox/processed/" + datasetID);
571571
try {
572572
if (processedDir.exists()) {
573-
FileUtils.deleteDirectory(processedDir);
573+
// FileUtils.deleteDirectory(processedDir);
574574
}
575575
} catch (IOException e) {
576576
logger.error("Error deleting directory: " + processedDir.getAbsolutePath(), e);

0 commit comments

Comments
 (0)