summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Larkin-York <dan.larkin-york@mongodb.com>2022-10-31 21:34:22 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-31 22:12:40 +0000
commit39e14246a6e1b332e57f017b727207b766cb313b (patch)
tree0350e59e921103b00988ac94ab5e98f0a9ee6d3b
parent36c9a671027b8c6569351cebd66d3e0fe3c334a8 (diff)
downloadmongo-39e14246a6e1b332e57f017b727207b766cb313b.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.js5
-rw-r--r--jstests/noPassthrough/timeseries_extended_range_startup.js5
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();