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 d33670f commit 476a196Copy full SHA for 476a196
internal/testutil/acc/shared_resource.go
@@ -4,6 +4,7 @@ import (
4
"fmt"
5
"sync"
6
"testing"
7
+ "time"
8
9
"github.com/stretchr/testify/require"
10
)
@@ -47,6 +48,8 @@ func ProjectIDExecution(tb testing.TB) string {
47
48
sharedInfo.projectName = RandomProjectName()
49
tb.Logf("Creating execution project: %s\n", sharedInfo.projectName)
50
sharedInfo.projectID = createProject(tb, sharedInfo.projectName)
51
+ } else {
52
+ time.Sleep(20 * time.Second) // HELP-65223: sleep a few seconds so clusters are not created concurrently in the execution project
53
}
54
55
return sharedInfo.projectID
0 commit comments