From 68333f710dc68440276059e25670e846ee58a049 Mon Sep 17 00:00:00 2001 From: Andre Garvin Date: Sat, 8 May 2021 20:41:58 -0400 Subject: [PATCH] Update to fix the issue, this github issue explains the issue https://github.com/typeorm/typeorm/issues/278 --- backend/common/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/common/db.ts b/backend/common/db.ts index 72c073d..757d483 100644 --- a/backend/common/db.ts +++ b/backend/common/db.ts @@ -12,7 +12,7 @@ export default async () => { entities: [Key, Report], url: process.env.CONNECTION_STRING, extra: { - ssl: true, + rejectUnauthorized: false, }, }); };