summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Larkin-York <dan.larkin-york@mongodb.com>2022-11-01 22:16:03 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-01 22:41:46 +0000
commit26c4f2f8abfb91082b24534605f58f3d2a2d298e (patch)
tree092178fb92409429a97ee787b1f0720576697a48
parenta170f2d160c42a7e7af48de775c97a693880fc1c (diff)
downloadmongo-26c4f2f8abfb91082b24534605f58f3d2a2d298e.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();