From ae7b5f6cee6a525ef6935264f2c6896e5a4f291f Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Sat, 28 Jun 2025 19:51:26 +0200 Subject: [PATCH] don't wait on close connection after seeding --- backend/src/seeds/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/seeds/index.ts b/backend/src/seeds/index.ts index 4189f87e3..f3f6237f3 100644 --- a/backend/src/seeds/index.ts +++ b/backend/src/seeds/index.ts @@ -98,7 +98,8 @@ const run = async () => { } logger.info('##seed## seeding all contributionLinks successful...') - await con.destroy() + // TODO: check why this sometimes hangs + // await con.destroy() } run().catch((err) => {