From da6968cd0564cb5ac2160005bdcd963d8953f83e Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 19 Mar 2025 11:50:11 -0700 Subject: [PATCH] revert test change --- bskylink/src/config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bskylink/src/config.ts b/bskylink/src/config.ts index f4913d004a..ce409cccca 100644 --- a/bskylink/src/config.ts +++ b/bskylink/src/config.ts @@ -62,9 +62,9 @@ export const envToCfg = (env: Environment): Config => { hostnames: env.hostnames, appHostname: env.appHostname || 'bsky.app', } - //if (!env.dbPostgresUrl) { - // throw new Error('Must configure postgres url (LINK_DB_POSTGRES_URL)') - //} + if (!env.dbPostgresUrl) { + throw new Error('Must configure postgres url (LINK_DB_POSTGRES_URL)') + } const dbCfg: DbConfig = { url: env.dbPostgresUrl, migrationUrl: env.dbPostgresMigrationUrl,