Details
-
Improvement
-
Status: Backlog
-
Major - P3
-
Resolution: Unresolved
-
None
-
None
Description
Example:
var res = db.runCommandWithMetadata({ |
insert: "foo", |
documents: [{_id: 1, state: 0}],
|
writeConcern: {w: "majority", wtimeout: 60 * 1000} |
},
|
{"$replData": 1}); |
Using the empty-comment hack makes it reasonable:
var res = db.runCommandWithMetadata( // |
{
|
insert: "foo", |
documents: [{_id: 1, state: 0}],
|
writeConcern: {w: "majority", wtimeout: 60 * 1000} |
},
|
{"$replData": 1}); |