Skip to content

Commit b9fd02f

Browse files
Merge pull request #2629 from openshift-cherrypick-robot/cherry-pick-2624-to-release-4.19
[release-4.19] OCPBUGS-59932: operator: increase wait time till degraded to max 4 times 5m
2 parents e4ecf31 + 395b557 commit b9fd02f

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
@@ -922,7 +922,7 @@ func (o *Operator) reportFailed(ctx context.Context, report runReport) {
922922
// Rate limit to avoid unnecessary status updates for temporary or transient errors that may resolve themselves within a few attempts.
923923
// Ensure you have thoroughly considered all implications before adjusting the threshold.
924924
// See: https://issues.redhat.com/browse/OCPBUGS-23745
925-
maxAttempts := 3
925+
maxAttempts := 4
926926
if o.failedReconcileAttempts < maxAttempts {
927927
klog.Infof("%d reconciliation(s) failed, %d more attempt(s) will be made before reporting failures.", o.failedReconcileAttempts, maxAttempts-o.failedReconcileAttempts)
928928
return

0 commit comments

Comments
 (0)