We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f4336b commit 13c37e0Copy full SHA for 13c37e0
x-pack/plugin/src/test/java/org/elasticsearch/xpack/test/rest/AbstractXPackRestTest.java
@@ -125,8 +125,8 @@ public void cleanup() throws Exception {
125
126
protected Predicate<String> waitForPendingTasksFilter() {
127
return task -> {
128
- // Don't check rollup jobs because we clear them in the superclass.
129
- return task.contains(RollupJob.NAME);
+ // Don't check rollup jobs or data stream reindex tasks because we clear them in the superclass.
+ return task.contains(RollupJob.NAME) || task.contains("reindex-data-stream");
130
};
131
}
132
0 commit comments