From 202ad4fda2618c652e35f5981ef2f903d8dd1f1a Mon Sep 17 00:00:00 2001 From: Alexander Ignatyev Date: Fri, 16 Jun 2023 12:24:50 +0000 Subject: SERVER-78169 Disable timeseries_lastpoint_top.js on 6.0 in causally_consistent_hedged_reads_jscore_passthrough --- .../suites/causally_consistent_hedged_reads_jscore_passthrough.yml | 1 + jstests/core/timeseries/timeseries_lastpoint_top.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildscripts/resmokeconfig/suites/causally_consistent_hedged_reads_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/causally_consistent_hedged_reads_jscore_passthrough.yml index beea3ff4cb4..607a68dc431 100644 --- a/buildscripts/resmokeconfig/suites/causally_consistent_hedged_reads_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/causally_consistent_hedged_reads_jscore_passthrough.yml @@ -45,6 +45,7 @@ selector: - jstests/core/tailable_cursor_invalidation.js - jstests/core/tailable_getmore_batch_size.js - jstests/core/tailable_skip_limit.js + - jstests/core/timeseries/timeseries_lastpoint_top.js - jstests/core/constructors.js - jstests/core/views/views_all_commands.js - jstests/core/or4.js diff --git a/jstests/core/timeseries/timeseries_lastpoint_top.js b/jstests/core/timeseries/timeseries_lastpoint_top.js index 753cfc239e1..c85f48fb076 100644 --- a/jstests/core/timeseries/timeseries_lastpoint_top.js +++ b/jstests/core/timeseries/timeseries_lastpoint_top.js @@ -26,8 +26,7 @@ const testDB = TimeseriesAggTests.getTestDb(); assert.commandWorked(testDB.dropDatabase()); // Do not run the rest of the tests if the lastpoint optimization is disabled. -// TODO SERVER-73509 The test doesn't work yet. -if (false && !FeatureFlagUtil.isEnabled(db, "LastPointQuery")) { +if (!FeatureFlagUtil.isEnabled(db, "LastPointQuery")) { jsTestLog("Skipping the test."); return; } -- cgit v1.2.3