Skip to content

Commit 219b8c1

Browse files
committed
Improve cluster job logging
1 parent 1f81ef4 commit 219b8c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cluster/src/org/labkey/cluster/pipeline/AbstractClusterExecutionEngine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ public void submitJob(PipelineJob job) throws PipelineJobException
101101
}
102102
else
103103
{
104-
job.getLogger().error("duplicate submission attempt, skipping. original cluster id: " + existingSubmission.getClusterId());
105-
_log.error("duplicate submission attempt, skipping. original cluster id: " + existingSubmission.getClusterId() + ", job id: " + job.getJobGUID());
104+
job.getLogger().error("duplicate submission attempt, skipping. original cluster id: " + existingSubmission.getClusterId() + ", with status: " + existingSubmission.getStatus());
105+
_log.error("duplicate submission attempt, skipping. original cluster id: " + existingSubmission.getClusterId() + ", job id: " + job.getJobGUID() + ", with status: " + existingSubmission.getStatus());
106106
return;
107107
}
108108
}

0 commit comments

Comments
 (0)