From 635635b356e1262e1c0b063408fe2209e6a8d4ec Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Thu, 9 Apr 2026 21:13:38 -0500 Subject: [PATCH] refactor(gp connect): gp connect as was added to long live services --- backend/server.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/server.ts b/backend/server.ts index 00a6b72..31e29ee 100644 --- a/backend/server.ts +++ b/backend/server.ts @@ -4,6 +4,7 @@ import createApp from "./app.js"; import { db } from "./db/db.controller.js"; import { dbCleanup } from "./db/dbCleanup.controller.js"; import { type Setting, settings } from "./db/schema/settings.schema.js"; +import { connectGPSql } from "./gpSql/gpSqlConnection.controller.js"; import { createLogger } from "./logger/logger.controller.js"; import { startNotifications } from "./notification/notification.controller.js"; import { createNotifications } from "./notification/notifications.master.js"; @@ -28,6 +29,7 @@ const start = async () => { // triggering long lived processes connectProdSql(); + connectGPSql(); // trigger startup processes these must run before anything else can run await baseSettingValidationCheck();