Merge pull request #1188 from cloudskiff/retry-policy-comment
Add missing comment for retry policy in ACC testsmain
commit
791be3553c
|
@ -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
|
||||
|
|
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue