chore(acc): add comment for retry policy

main
sundowndev 2021-10-27 15:55:09 +02:00
parent a17139ff8e
commit 331fbe6b89
2 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,7 @@ func TestAcc_Google_CloudFunctionsFunction(t *testing.T) {
},
Checks: []acceptance.AccCheck{
{
// New cloud function resources are not visible immediatly on GCP api after an apply
// New resources are not visible immediately on GCP api after an apply
// Logic below retry driftctl scan until we can retrieve the results (infra will be in sync) and for maximum 60 seconds
ShouldRetry: func(result *test.ScanResult, retryDuration time.Duration, retryCount uint8) bool {
return !result.IsSync() && retryDuration < time.Minute

View File

@ -18,6 +18,8 @@ func TestAcc_Google_StorageBucket(t *testing.T) {
},
Checks: []acceptance.AccCheck{
{
// New resources are not visible immediately on GCP api after an apply
// Logic below retry driftctl scan until we can retrieve the results (infra will be in sync) and for maximum 60 seconds
ShouldRetry: func(result *test.ScanResult, retryDuration time.Duration, retryCount uint8) bool {
return !result.IsSync() && retryDuration < time.Minute
},