Hello All,
I am running into this warning that is driving me crazy.
Here is the warning:
(node:38419) DeprecationWarning: current Server Discovery and Monitoring engine is deprecated, and will be removed in a future version. To use the new Server Discover and Monitoring engine, pass option { useUnifiedTopology: true } to the MongoClient constructor.
(Use `node --trace-deprecation ...` to show where the warning was created)
MongoDB Connect: *************.zzkco.mongodb.net
and here is my code:
const mongoose = require('mongoose');
const connectDB = async () => {
try {
mongoose.set('useUnifiedTopology', true);
mongoose.set('useNewUrlParser', true);
const conn = await mongoose.connect(process.env.MONGO_URI)
console.log(`MongoDB Connect: ${conn.connection.host}`)
} catch (err) {
console.error(`Error: ${err.message}`);
process.exit(1);
}
}
module.exports = connectDB
Any help that you can offer is appreciated!
Top comments (10)
try with this:
I get this warning
what version of mongoose are you using?
I am using version 5.11.9
it's weird, I just installed mongoose and executed the same example and I don't get the warning
i'm using node
15.0.1
I have node 14.15.1. I will restart my machine and see if that fixes it.
I reset my machine and installed the latest version of Node. Still receiving the warning.
const mongoose = require('mongoose');
const connectDB = async () => {
try {
const conn = await mongoose.connect(process.env.MONGO_URI,
{
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
});
console.log(
MongoDB Connect: ${conn.connection.host}
)}
module.exports = connectDB
Here is a page from Mongoose about this kind of errors:
mongoosejs.com/docs/deprecations.html
I've used all these 4 settings and the problem was solved:
mongoose.set('useNewUrlParser', true);
mongoose.set('useFindAndModify', false);
mongoose.set('useCreateIndex', true);
mongoose.set('useUnifiedTopology', true);
I have also tried this and still get the warning.