Skip to content

Commit fce0dac

Browse files
committed
Bugfix to SequenceAnalysisMaintenanceTask
1 parent 9d392b9 commit fce0dac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,10 @@ else if (sf.getFilePath() == null)
272272
return;
273273
}
274274

275-
File root = new File(sf.getFilePath());
275+
File root = new File(sf.getFilePath()).getParentFile();
276276
if (!root.exists())
277277
{
278-
log.error("Run fileroot does not exist: " + runId + " / " + root.getPath());
278+
log.error("Run file root does not exist. runId: " + runId + " / jobId: " + sf.getRowId() + " / " + root.getPath());
279279
return;
280280
}
281281

0 commit comments

Comments
 (0)