[ML][DataFrame] Consider data frame templates internal in REST tests (#43692)

The data frame index template pattern was not in the list
considered as internal and therefore not needing cleanup
after every test.
This commit is contained in:
David Roberts 2019-06-27 14:32:47 +01:00
parent 36360358b2
commit c5beb05f77
1 changed files with 3 additions and 0 deletions

View File

@ -938,6 +938,9 @@ public abstract class ESRestTestCase extends ESTestCase {
if (name.startsWith(".watch") || name.startsWith(".triggered_watches")) {
return true;
}
if (name.startsWith(".data-frame-")) {
return true;
}
if (name.startsWith(".ml-")) {
return true;
}