I try to applied writeConcern:
db.users.insert_one({
“name”: name,
“email”: email,
“password”: hashedpw
},{writeConcern:{w:“majority”}})
I followed this example…
db.products.insert(
{ item: “envelopes”, qty : 100, type: “Clasp” },
{ writeConcern: { w: “majority” , wtimeout: 5000 } }
)
But I get this Error:
How can I save this mistake?
Thanks everyone