We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31de445 commit 2869441Copy full SHA for 2869441
SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java
@@ -239,13 +239,13 @@ else if (!d.getFile().exists())
239
ExpRun run = ExperimentService.get().getExpRun(m.getRunId());
240
if (run == null)
241
{
242
- log.error("Missing runId: " + m.getRunId());
+ log.info("Not ExpRun found for runId: " + m.getRunId());
243
}
244
else if (run.getFilePathRootPath() == null)
245
246
log.error("Run fileroot is null for runId: " + m.getRunId());
247
248
- else if (!run.getFilePathRootPath().toFile().exists())
+ else if (!run.getFilePathRoot().exists())
249
250
log.error("Run fileroot does not exist: " + m.getRunId() + " / " + run.getFilePathRoot());
251
0 commit comments