chore(): Add retry strategy to database connection (#12713)

RESOLVES FRMW-2978

**What**
Add retry mechanism to database connection management to prevent failing when the server start faster than what makes the connection available
This commit is contained in:
Adrien de Peretti
2025-06-13 07:18:49 +00:00
committed by GitHub
parent 44d1d18689
commit cbf3644eb7
9 changed files with 333 additions and 45 deletions
@@ -15,7 +15,7 @@ export async function initDb() {
"@medusajs/framework"
)
const pgConnection = pgConnectionLoader()
const pgConnection = await pgConnectionLoader()
await featureFlagsLoader()
return pgConnection