[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:
parent
36360358b2
commit
c5beb05f77
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue