diff options
| author | Alexander Ignatyev <alexander.ignatyev@mongodb.com> | 2023-06-16 12:24:50 +0000 |
|---|---|---|
| committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-06-16 12:55:56 +0000 |
| commit | 202ad4fda2618c652e35f5981ef2f903d8dd1f1a (patch) | |
| tree | 019caddf2882465c92d669a9df8b22bc32b62c22 | |
| parent | 5b37e99faa6253957d7d28f25a381ea239bfe376 (diff) | |
SERVER-78169 Disable timeseries_lastpoint_top.js on 6.0 in causally_consistent_hedged_reads_jscore_passthroughr6.0.7-rc0r6.0.7
| -rw-r--r-- | buildscripts/resmokeconfig/suites/causally_consistent_hedged_reads_jscore_passthrough.yml | 1 | ||||
| -rw-r--r-- | 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; } |
