Skip to content

Commit

Permalink
connectinArgs.Database > connectinArgs.database typo (#6576)
Browse files Browse the repository at this point in the history
  • Loading branch information
PTR-inc authored Dec 2, 2024
1 parent ce4217c commit f9228ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db.js
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ module.exports.CreateDB = function (parent, func) {
} else if (parent.args.postgres) {
// Postgres SQL
let connectinArgs = parent.args.postgres;
connectinArgs.Database = (databaseName = (connectinArgs.database != null) ? connectinArgs.database : 'meshcentral');
connectinArgs.database = (databaseName = (connectinArgs.database != null) ? connectinArgs.database : 'meshcentral');

let DatastoreTest;
obj.databaseType = DB_POSTGRESQL;
Expand Down

0 comments on commit f9228ad

Please sign in to comment.