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()
{
mongoose.connect(mongoDB)
.catch(err=>
{
console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err)
connectToDB();
});
try {
mongoose.connect(mongoDB);
} catch (error) {
console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err)
connectToDB();
}
}
bot.on('ready', () =>

Loading…
Cancel
Save