From 4bb4d00f203032f8fcebef56a5652e9e60251159 Mon Sep 17 00:00:00 2001 From: Yannick Evers Date: Wed, 6 Mar 2024 16:37:22 +0000 Subject: [PATCH] Fix check --- src/infrastructure/databasePromise.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/infrastructure/databasePromise.js b/src/infrastructure/databasePromise.js index cd869e5..448cf60 100644 --- a/src/infrastructure/databasePromise.js +++ b/src/infrastructure/databasePromise.js @@ -15,8 +15,7 @@ const resolveDBCredentials = () => { (config.NODE_ENV === 'production' && !db_password) || !db_host || !db_port || - !db_database || - !db_ssl) { + !db_database) { throw new Error('expected database credentials but incomplete specified'); }