From d4fd775c37041d70ebda2532fe36e08bc71b9bf2 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Fri, 26 Jan 2024 13:42:39 +0000 Subject: [PATCH] Attempting to fix issue with Postgres not being fully started in Github CI - previous message the DB was starting, this message means the database is fully started. --- packages/server/src/integrations/tests/utils/postgres.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/server/src/integrations/tests/utils/postgres.ts b/packages/server/src/integrations/tests/utils/postgres.ts index f65d33e3e0..21f5dbb352 100644 --- a/packages/server/src/integrations/tests/utils/postgres.ts +++ b/packages/server/src/integrations/tests/utils/postgres.ts @@ -15,9 +15,7 @@ export async function getDsConfig(): Promise { .withExposedPorts(5432) .withEnv("POSTGRES_PASSWORD", "password") .withWaitStrategy( - Wait.forLogMessage( - "PostgreSQL init process complete; ready for start up." - ) + Wait.forLogMessage("database system is ready to accept connections") ) .start() }