Tell us what’s happening:
My solutions to this are timing out.
I’ve checked the previous queries on this issue. I’m already using replit and I’ve also tried making the URI connection adjustments suggested in a previous answer (I’m limited to only two links, sorry).
The following error message is in the console, but I’m not clear on what it means.
MongoWriteConcernError: No write concern mode named 'majority'' found in replica set configuration
at MessageStream.messageHandler (/home/runner/boilerplate-mongomongoose/node_modules/mongodb/lib/cmap/connection.js:463:30)
at MessageStream.emit (events.js:314:20)
at processIncomingData (/home/runner/boilerplate-mongomongoose/node_modules/mongodb/lib/cmap/message_stream.js:108:16)
at MessageStream._write (/home/runner/boilerplate-mongomongoose/node_modules/mongodb/lib/cmap/message_stream.js:28:9)
at doWrite (_stream_writable.js:403:12)
at writeOrBuffer (_stream_writable.js:387:5)
at MessageStream.Writable.write (_stream_writable.js:318:11)
at TLSSocket.ondata (_stream_readable.js:718:22)
at TLSSocket.emit (events.js:314:20)
at addChunk (_stream_readable.js:297:12) {
code: 79,
codeName: 'UnknownReplWriteConcern',
errInfo: {
writeConcern: { w: "majority'", wtimeout: 0, provenance: 'clientSupplied' }
},
result: {
n: 1,
opTime: { ts: new Timestamp({ t: 1630245700, i: 1 }), t: 51 },
electionId: new ObjectId("7fffffff0000000000000033"),
ok: 1,
writeConcernError: {
code: 79,
codeName: 'UnknownReplWriteConcern',
errmsg: "No write concern mode named 'majority'' found in replica set configuration",
errInfo: [Object]
},
'$clusterTime': {
clusterTime: new Timestamp({ t: 1630245700, i: 1 }),
signature: [Object]
},
operationTime: new Timestamp({ t: 1630245700, i: 1 })
}
}
My code is:
const mongoose = require('mongoose')
mongoose.connect(process.env.MONGO_URI);
const { Schema } = mongoose
const personSchema = new Schema({
name : {type: String, required: true},
age : Number,
favoriteFoods : [String]
})
const Person = mongoose.model("Person", personSchema)
var createAndSavePerson = async function(done) {
var person = new Person({
name: 'Jane Fonda',
age: 84,
favoriteFoods: ['vodka', 'air']
});
person.save(function(err, data) {
if (err) return console.error(err);
done(null, data)
});
};
Your project link(s)
solution: https://replit.com/@mattnk/boilerplate-mongomongoose
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36
Challenge: Create and Save a Record of a Model
Link to the challenge: