Skip to content

Commit 31de445

Browse files
committed
Update error message
1 parent 7461d68 commit 31de445

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,10 @@ else if (run.getFilePathRootPath() == null)
245245
{
246246
log.error("Run fileroot is null for runId: " + m.getRunId());
247247
}
248+
else if (!run.getFilePathRootPath().toFile().exists())
249+
{
250+
log.error("Run fileroot does not exist: " + m.getRunId() + " / " + run.getFilePathRoot());
251+
}
248252
else
249253
{
250254
try (Stream<Path> stream = Files.walk(run.getFilePathRootPath()))

0 commit comments

Comments
 (0)