We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f02031 commit b1289f4Copy full SHA for b1289f4
cluster/src/org/labkey/cluster/pipeline/SlurmExecutionEngine.java
@@ -25,6 +25,7 @@
25
import org.quartz.JobExecutionException;
26
27
import java.io.File;
28
+import java.io.FileNotFoundException;
29
import java.io.FileWriter;
30
import java.io.IOException;
31
import java.io.PrintWriter;
@@ -324,6 +325,10 @@ else if (headerFound)
324
325
{
326
writer.println(info + ". Raw slurm value: " + maxRSS);
327
}
328
+ catch (FileNotFoundException e)
329
+ {
330
+ _log.error("Unable to find log file for job, " + job.getJobId() + ": " + sf.getFilePath());
331
+ }
332
333
334
0 commit comments