summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorDan Larkin-York <dan.larkin-york@mongodb.com>2022-10-11 18:11:58 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-11 18:45:36 +0000
commitaa59b2a472c925a6f3e419cb2fe8092a4ef56f61 (patch)
tree2ae3860f16c067a03d08aeaf71eb56053a19de08 /jstests
parent18aeb204e6e1784de0707e7c68ae393884ca791c (diff)
downloadmongo-aa59b2a472c925a6f3e419cb2fe8092a4ef56f61.tar.gz
SERVER-70314 Adjust time series extended range tests to account for log retention limitations
Diffstat (limited to 'jstests')
-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();