Improved connectionObject creation

This commit is contained in:
Noah Zalev 2021-04-29 23:55:37 -04:00
parent abbb6be431
commit 740559f2f8

11
db.js
View File

@ -443,15 +443,8 @@ module.exports.CreateDB = function (parent, func) {
var dbname = (connectinArgs.database != null) ? connectinArgs.database : 'meshcentral';
// Including the db name in the connection obj will cause a connection failure if it does not exist
var connectionObject = {
'host': connectinArgs.host,
'port': connectinArgs.port,
'user': connectinArgs.user,
'password': connectinArgs.password,
'connectionLimit': null
};
if (connectinArgs.connectionLimit != null) connectionObject.connectionLimit = connectinArgs.connectionLimit;
var connectionObject = Clone(connectinArgs);
delete connectionObject.database;
if (parent.args.mariadb) {
// Use MariaDB