Reputation: 3014
I am getting an unusual error message when trying to insert data into my mongodb database. I am attempting to perform a simple insertOne operation, not even referencing any key called $clusterTime
db.collection("listings").insertOne( objToInsert , function(err, res) {
if (err) { console.log(err); console.log("err"); return; }
console.log('success');
});
Upvotes: 1
Views: 681
Reputation: 3014
Solution provided by Mongodb at : https://jira.mongodb.org/browse/NODE-1627?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel
Basically, upgrade from v3.1.2 to v3.1.3
Upvotes: 1