Skip to content

Commit 395b557

Browse files
jan--fopenshift-cherrypick-robot
authored andcommitted
operator: increase wait time till degraded to max 4 times 5m
Fixes: https://issues.redhat.com/browse/OCPBUGS-57215 Signed-off-by: Jan Fajerski <[email protected]>
1 parent e4ecf31 commit 395b557

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)