We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d392b9 commit fce0dacCopy full SHA for fce0dac
1 file changed
SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java
@@ -272,10 +272,10 @@ else if (sf.getFilePath() == null)
272
return;
273
}
274
275
- File root = new File(sf.getFilePath());
+ File root = new File(sf.getFilePath()).getParentFile();
276
if (!root.exists())
277
{
278
- log.error("Run fileroot does not exist: " + runId + " / " + root.getPath());
+ log.error("Run file root does not exist. runId: " + runId + " / jobId: " + sf.getRowId() + " / " + root.getPath());
279
280
281
0 commit comments