Attempting to solve timeout problem with mongo db

master
Cristiano Pires 2 years ago
parent bb4873ef2f
commit da158fa3a7

@ -56,12 +56,13 @@ const bot = new Client({ intents: [
function connectToDB() function connectToDB()
{ {
mongoose.connect(mongoDB) try {
.catch(err=> mongoose.connect(mongoDB);
{ } catch (error) {
console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err) console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err)
connectToDB(); connectToDB();
}); }
} }
bot.on('ready', () => bot.on('ready', () =>

Loading…
Cancel
Save