summaryrefslogtreecommitdiff
path: root/jstests/replsets/rollback_too_new.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/rollback_too_new.js')
-rw-r--r--jstests/replsets/rollback_too_new.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/jstests/replsets/rollback_too_new.js b/jstests/replsets/rollback_too_new.js
index e0a88e12f31..2e8e4d3693d 100644
--- a/jstests/replsets/rollback_too_new.js
+++ b/jstests/replsets/rollback_too_new.js
@@ -28,17 +28,13 @@
// get master and do an initial write
var master = replTest.getPrimary();
- var options = {
- writeConcern: {w: 2, wtimeout: 60000}
- };
+ var options = {writeConcern: {w: 2, wtimeout: 60000}};
assert.writeOK(master.getDB(name).foo.insert({x: 1}, options));
// add an oplog entry from the distant future as the most recent entry on node C
var future_oplog_entry = conns[2].getDB("local").oplog.rs.find().sort({$natural: -1})[0];
future_oplog_entry["ts"] = new Timestamp(future_oplog_entry["ts"].getTime() + 200000, 1);
- options = {
- writeConcern: {w: 1, wtimeout: 60000}
- };
+ options = {writeConcern: {w: 1, wtimeout: 60000}};
assert.writeOK(conns[2].getDB("local").oplog.rs.insert(future_oplog_entry, options));
replTest.stop(CID);