Skip to content

Commit 8162e10

Browse files
committed
Increase retry time
1 parent 0b1ca87 commit 8162e10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/common.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ func cleanupTerraform(t *testing.T, workingDir string) {
5050
terraformOptions.RetryableTerraformErrors = map[string]string{
5151
".*operation error EKS: DeleteFargateProfile.*": "Fargate delete failed",
5252
}
53-
terraformOptions.MaxRetries = 5
54-
terraformOptions.TimeBetweenRetries = time.Minute
53+
terraformOptions.MaxRetries = 15
54+
terraformOptions.TimeBetweenRetries = 3 * time.Minute
5555
terraform.Destroy(t, terraformOptions)
5656
test_structure.CleanupTestDataFolder(t, workingDir)
5757
}

0 commit comments

Comments
 (0)