v1.18.x
Barış Soner Uşaklı 6 years ago
parent 154d7076d9
commit 0aebb9caf8

@ -77,9 +77,9 @@ mongoModule.getConnectionString = function () {
if (!nconf.get('mongo:port')) { if (!nconf.get('mongo:port')) {
nconf.set('mongo:port', 27017); nconf.set('mongo:port', 27017);
} }
console.log(nconf.get('mongo:database'), typeof nconf.get('mongo:database')); const dbName = nconf.get('mongo:database');
if (!nconf.get('mongo:database')) { if (dbName === undefined || dbName === '') {
console.log('switching to nodebb database'); winston.warn('You have no database name, using "nodebb"');
nconf.set('mongo:database', 'nodebb'); nconf.set('mongo:database', 'nodebb');
} }

@ -52,7 +52,9 @@ postgresModule.getConnectionOptions = function () {
if (!nconf.get('postgres:port')) { if (!nconf.get('postgres:port')) {
nconf.set('postgres:port', 5432); nconf.set('postgres:port', 5432);
} }
if (!nconf.get('postgres:database')) { const dbName = nconf.get('postgres:database');
if (dbName === undefined || dbName === '') {
winston.warn('You have no database name, using "nodebb"');
nconf.set('postgres:database', 'nodebb'); nconf.set('postgres:database', 'nodebb');
} }

Loading…
Cancel
Save