From b35eb8d6a13faa39ff6b62b80f7d2c30b84bf2bd Mon Sep 17 00:00:00 2001 From: garrettmills Date: Mon, 18 Oct 2021 13:36:59 -0500 Subject: [PATCH] Fix error throw --- src/orm/connection/PostgresConnection.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/orm/connection/PostgresConnection.ts b/src/orm/connection/PostgresConnection.ts index df071c7..fa7fefd 100644 --- a/src/orm/connection/PostgresConnection.ts +++ b/src/orm/connection/PostgresConnection.ts @@ -69,6 +69,8 @@ export class PostgresConnection extends Connection { connection: this.name, }) } + + throw e } }