summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2017-11-28 13:30:43 -0500
committerEric Milkie <milkie@10gen.com>2017-11-28 13:30:43 -0500
commite766422106fa6abfffeba20bc9d3a406d15301b1 (patch)
tree4a13c3d25c51d85cc60cf6afd4ec229b7fee7520
parent924a4db540688e15dced5894a4bff6f943fc68ad (diff)
downloadmongo-e766422106fa6abfffeba20bc9d3a406d15301b1.tar.gz
SERVER-32104 remove failing invariant for 3.6
-rw-r--r--src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp
index 01d20e43180..e16ddefb2ec 100644
--- a/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp
+++ b/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp
@@ -1055,7 +1055,6 @@ void WiredTigerKVEngine::setOldestTimestamp(SnapshotName oldestTimestamp) {
}
// Lag the oldest_timestamp by one timestamp set, to give a bit more history.
- invariant(_previousSetOldestTimestamp <= oldestTimestamp);
auto timestampToSet = _previousSetOldestTimestamp;
_previousSetOldestTimestamp = oldestTimestamp;
if (timestampToSet == SnapshotName()) {