Skip to content

Commit bc8807c

Browse files
Merge pull request #2624 from jan--f/increase-degraded-wait
OCPBUGS-57215: operator: increase wait time till degraded to max 4 times 5m
2 parents 5bfa3b9 + 6a70994 commit bc8807c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/operator/operator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ func (o *Operator) reportFailed(ctx context.Context, report runReport) {
871871
// Rate limit to avoid unnecessary status updates for temporary or transient errors that may resolve themselves within a few attempts.
872872
// Ensure you have thoroughly considered all implications before adjusting the threshold.
873873
// See: https://issues.redhat.com/browse/OCPBUGS-23745
874-
maxAttempts := 3
874+
maxAttempts := 4
875875
if o.failedReconcileAttempts < maxAttempts {
876876
klog.Infof("%d reconciliation(s) failed, %d more attempt(s) will be made before reporting failures.", o.failedReconcileAttempts, maxAttempts-o.failedReconcileAttempts)
877877
return

0 commit comments

Comments
 (0)