Make the ignore_above docs tests more robust. (#43349)
It is possible for internal ML indices like `.data-frame-notifications-1` to leak, causing other docs tests to fail when they accidentally search over these indices. This PR updates the ignore_above tests to only search a specific index.
This commit is contained in:
parent
ba518722a2
commit
bed7e68014
|
@ -30,7 +30,7 @@ PUT my_index/_doc/2 <3>
|
||||||
"message": "Syntax error with some long stacktrace"
|
"message": "Syntax error with some long stacktrace"
|
||||||
}
|
}
|
||||||
|
|
||||||
GET _search <4>
|
GET my_index/_search <4>
|
||||||
{
|
{
|
||||||
"aggs": {
|
"aggs": {
|
||||||
"messages": {
|
"messages": {
|
||||||
|
|
Loading…
Reference in New Issue