Skip to content

Commit 469f8ab

Browse files
committed
Change timeouts for creating resources
1 parent f04f97c commit 469f8ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/suite/reconfig_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
9999
}
100100

101101
createResourcesGWLast := func(resourceCount int) error {
102-
ctx, cancel := context.WithTimeout(context.Background(), timeoutConfig.GetTimeout)
102+
ctx, cancel := context.WithTimeout(context.Background(), timeoutConfig.CreateTimeout)
103103
defer cancel()
104104

105105
for i := 1; i <= resourceCount; i++ {
@@ -136,7 +136,7 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
136136
}
137137

138138
createResourcesRoutesLast := func(resourceCount int) error {
139-
ctx, cancel := context.WithTimeout(context.Background(), timeoutConfig.GetTimeout)
139+
ctx, cancel := context.WithTimeout(context.Background(), timeoutConfig.CreateTimeout)
140140
defer cancel()
141141

142142
for i := 1; i <= resourceCount; i++ {

0 commit comments

Comments
 (0)