fix: undo container pg connection destroy (#5500)

This commit is contained in:
Riqwan Thamir
2023-10-31 08:02:19 +01:00
committed by GitHub
parent 4d52082bf0
commit 399005cc58
@@ -69,14 +69,8 @@ const DbTestUtil = {
},
shutdown: async function () {
const container = getContainer()
const containerPgConnection = container.resolve(
ContainerRegistrationKeys.PG_CONNECTION
)
await this.db_.destroy()
await this.pgConnection_?.context?.destroy()
await containerPgConnection?.context?.destroy()
return await dropDatabase({ DB_NAME }, pgGodCredentials)
},