test: Update wait statement for postgresql_extensible (#11447)

This commit is contained in:
Joshua Powers 2022-07-05 09:38:05 -06:00 committed by GitHub
parent ffb59a3f85
commit 2f6701013b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ func queryRunner(t *testing.T, q query) *testutil.Accumulator {
"POSTGRES_HOST_AUTH_METHOD": "trust",
},
WaitingFor: wait.ForAll(
wait.ForLog("database system is ready to accept connections"),
wait.ForLog("database system is ready to accept connections").WithOccurrence(2),
wait.ForListeningPort(nat.Port(servicePort)),
),
}