Skip to content

Commit 69475bd

Browse files
committed
Set maxRetryInterval default value to 24 hours
1 parent 93443e8 commit 69475bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/v1alpha2/terraform_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ func (in Terraform) GetRetryInterval() time.Duration {
923923

924924
if in.Spec.RetryStrategy == ExponentialBackoff {
925925
retryInterval *= time.Duration(math.Pow(2, float64(in.Status.ReconciliationFailures)))
926-
maxRetryInterval := 60 * time.Minute
926+
maxRetryInterval := 24 * time.Hour
927927
if in.Spec.MaxRetryInterval != nil {
928928
maxRetryInterval = in.Spec.MaxRetryInterval.Duration
929929
}

0 commit comments

Comments
 (0)