We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93443e8 commit 69475bdCopy full SHA for 69475bd
api/v1alpha2/terraform_types.go
@@ -923,7 +923,7 @@ func (in Terraform) GetRetryInterval() time.Duration {
923
924
if in.Spec.RetryStrategy == ExponentialBackoff {
925
retryInterval *= time.Duration(math.Pow(2, float64(in.Status.ReconciliationFailures)))
926
- maxRetryInterval := 60 * time.Minute
+ maxRetryInterval := 24 * time.Hour
927
if in.Spec.MaxRetryInterval != nil {
928
maxRetryInterval = in.Spec.MaxRetryInterval.Duration
929
}
0 commit comments