You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//NOTE: in rare cases the actual job and status file can get out of sync
487
-
if (status.equalsIgnoreCase(PipelineJob.TaskStatus.running.name()) && sf.getStatus().equalsIgnoreCase(PipelineJob.TaskStatus.error.name()))
486
+
//NOTE: in rare cases the actual job and status file can get out of sync. This is generally a race-condition with differences in timing of ActiveMQ-messages vs. polling the cluster
487
+
if (status != null && status.equalsIgnoreCase(PipelineJob.TaskStatus.running.name()) && sf.getStatus().equalsIgnoreCase(PipelineJob.TaskStatus.error.name()))
488
488
{
489
-
_log.error("Pipeline job and cluster out of sync: " + sf.getStatus() + " / " + status + ", for job: " + sf.getRowId());
0 commit comments