From 1b1a9d327669d69e90ba7274cce7bcd235bb1bec Mon Sep 17 00:00:00 2001 From: Jonathan Dance Date: Wed, 11 Oct 2023 19:17:18 -0500 Subject: [PATCH] tests: increase startup timeout to 30sec --- acceptance/postgres/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/postgres/main_test.go b/acceptance/postgres/main_test.go index 9f959dcb..bf798c0e 100644 --- a/acceptance/postgres/main_test.go +++ b/acceptance/postgres/main_test.go @@ -76,7 +76,7 @@ type Config struct { Image string `env:"POSTGRES_IMAGE,required"` UpgradeFromImage string `env:"POSTGRES_UPGRADE_FROM_IMAGE,required"` ArtifactDir string `env:"ARTIFACT_DIR,default="` - WaitForStartTimeout time.Duration `env:"WAIT_FOR_START_TIMEOUT,default=15s"` + WaitForStartTimeout time.Duration `env:"WAIT_FOR_START_TIMEOUT,default=30s"` WaitForStartInterval time.Duration `env:"WAIT_FOR_START_INTERVAL,default=2s"` PostgresPort int `env:"POSTGRES_PORT,default=5432"` ExpectedPostgresVersion string `env:"EXPECTED_POSTGRES_VERSION,required"`