error handling broke things

This commit is contained in:
Skylar Grant 2022-06-09 18:22:42 -04:00
parent 02ce211b3f
commit dae4288d2e
1 changed files with 8 additions and 12 deletions

View File

@ -27,18 +27,14 @@ const dotCommandFiles = fs.readdirSync('./dot-commands/').filter(file => file.en
// MySQL database connection // MySQL database connection
const mysql = require('mysql'); const mysql = require('mysql');
try { const db = new mysql.createPool({
const db = new mysql.createPool({ connectionLimit: 10,
connectionLimit: 10, host: dbHost,
host: dbHost, user: dbUser,
user: dbUser, password: dbPass,
password: dbPass, database: dbName,
database: dbName, port: dbPort,
port: dbPort, });
});
} catch (error) {
console.error(error);
}
const functions = { const functions = {
// Functions for managing and creating Collections // Functions for managing and creating Collections