From fa254623b540e6eb96a98354403c5b0343dcc455 Mon Sep 17 00:00:00 2001 From: Cody Seibert Date: Mon, 22 Jul 2024 12:35:26 -0400 Subject: [PATCH] 10391 - switching to use ca instead of cert --- web-api/src/data-source.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-api/src/data-source.ts b/web-api/src/data-source.ts index c4ec275cf65..d8689ac42ec 100644 --- a/web-api/src/data-source.ts +++ b/web-api/src/data-source.ts @@ -14,7 +14,7 @@ export const AppDataSource = new DataSource({ ssl: process.env.NODE_ENV === 'production' ? { - cert: './us-east-1-bundle.pem', + ca: './us-east-1-bundle.pem', } : undefined, subscribers: [],