diff options
author | Dan Larkin-York <dan.larkin-york@mongodb.com> | 2022-11-01 19:03:45 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-11-01 20:06:19 +0000 |
commit | ae1522d4b166c9d4d51b678996c5ea0cf2af9b0a (patch) | |
tree | 5673c432cfce9f4bf62a84b6c574f16960bfc0c4 | |
parent | 59320e91cb29b28214e5b6ceed0db6e0f49984a0 (diff) | |
download | mongo-ae1522d4b166c9d4d51b678996c5ea0cf2af9b0a.tar.gz |
SERVER-70314 Adjust time series extended range tests to account for log retention limitations
-rw-r--r-- | jstests/noPassthrough/timeseries_extended_range_rollback.js | 5 | ||||
-rw-r--r-- | jstests/noPassthrough/timeseries_extended_range_startup.js | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/jstests/noPassthrough/timeseries_extended_range_rollback.js b/jstests/noPassthrough/timeseries_extended_range_rollback.js index 5224863143c..4e36ec9eaf7 100644 --- a/jstests/noPassthrough/timeseries_extended_range_rollback.js +++ b/jstests/noPassthrough/timeseries_extended_range_rollback.js @@ -65,11 +65,6 @@ rollbackTest.transitionToSyncSourceOperationsDuringRollback(); rollbackTest.transitionToSteadyStateOperations(); // Make sure the collections get flagged properly again during rollback. -assert(checkLog.checkContainsWithCountJson( - rollbackNode, 6679402, {"nss": "test.standard", "timeField": "time"}, 0)); -assert(checkLog.checkContainsWithCountJson( - rollbackNode, 6679402, {"nss": "test.extended", "timeField": "time"}, 2)); - assert.eq(1, getExtendedRangeCount(rollbackNode)); rollbackTest.stop(); diff --git a/jstests/noPassthrough/timeseries_extended_range_startup.js b/jstests/noPassthrough/timeseries_extended_range_startup.js index 21aa3046f84..a77a02be71c 100644 --- a/jstests/noPassthrough/timeseries_extended_range_startup.js +++ b/jstests/noPassthrough/timeseries_extended_range_startup.js @@ -54,11 +54,6 @@ assert.eq(1, primaryDB.standard.count()); assert.eq(1, primaryDB.extended.count()); // Make sure the collections get flagged properly again after startup. -assert(checkLog.checkContainsWithCountJson( - primary, 6679402, {"nss": "testDB.standard", "timeField": "time"}, 0)); -assert(checkLog.checkContainsWithCountJson( - primary, 6679402, {"nss": "testDB.extended", "timeField": "time"}, 1)); - assert.eq(1, getExtendedRangeCount(primary)); rst.stopSet(); |