From da158fa3a7bf75f756f586eedec6066a6313a60c Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Tue, 18 Apr 2023 18:01:28 +0100 Subject: [PATCH] Attempting to solve timeout problem with mongo db --- server.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/server.js b/server.js index a53825f..ef844cc 100644 --- a/server.js +++ b/server.js @@ -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', () =>