summaryrefslogtreecommitdiff
path: root/jstests/core/timeseries/timeseries_index.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/timeseries/timeseries_index.js')
-rw-r--r--jstests/core/timeseries/timeseries_index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/jstests/core/timeseries/timeseries_index.js b/jstests/core/timeseries/timeseries_index.js
index 477935136b6..5bfd4aba516 100644
--- a/jstests/core/timeseries/timeseries_index.js
+++ b/jstests/core/timeseries/timeseries_index.js
@@ -133,6 +133,8 @@ const runTest = function(keyForCreate, hint) {
assert.commandWorked(coll.dropIndex('hide2'), 'failed to drop index: hide2');
// Check that we are able to create the index as hidden.
+ // TODO(SERVER-56019): This test case tends to be problematic in the burn_in_tests suite under
+ // the replica_sets_initsync_jscore_passthrough subtask.
assert.commandWorked(coll.createIndex(keyForCreate, {name: 'hide3', hidden: true}),
'failed to create index: ' + tojson(keyForCreate));
assert.commandFailedWithCode(assert.throws(() => bucketsColl.find().hint(hint).toArray()),