Skip to content

Commit 3339755

Browse files
committed
test: increase retry attempts for gateway connection in integration tests
1 parent fa06c52 commit 3339755

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func testGatewayConnection(t *testing.T, opts *terraform.Options) {
104104
address := gatewayIP + ":5000"
105105
timeout := 1 * time.Minute
106106
var err error
107-
for i := 0; i < 10; i++ {
107+
for i := 0; i < 20; i++ {
108108
conn, err := net.DialTimeout("tcp", address, timeout)
109109
if err == nil {
110110
conn.Close()

0 commit comments

Comments
 (0)