Skip to content

Commit 81f5c87

Browse files
committed
Allow cluster to correct pipeline status discrepancies
1 parent dc06add commit 81f5c87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,8 @@ protected void updateJobStatus(@Nullable String status, ClusterJob j, @Nullable
504504

505505
if (status != null && !statusChanged && !sf.getStatus().equalsIgnoreCase(j.getStatus()))
506506
{
507-
_log.error("ClusterExecutionEngine reports status not changed for job: " + sf.getRowId() + ", but was: " + status + " / statusfile: " + sf.getStatus() + " / cluster job: " + j.getStatus());
507+
_log.info("ClusterExecutionEngine reports status not changed for job: " + sf.getRowId() + ", but was: " + status + " / statusfile: " + sf.getStatus() + " / cluster job: " + j.getStatus());
508+
statusChanged = true;
508509
}
509510
}
510511

0 commit comments

Comments
 (0)