The officially supported way to clearing all entries from a cache is to use wildcard of either * or _all. Though empty string has the same effect, it was never intended. Therefore the tests should not use empty string and this PR changes them to use *.
This commit is contained in:
parent
f2517678aa
commit
428fd7218c
|
@ -195,7 +195,7 @@ teardown:
|
|||
|
||||
- do:
|
||||
security.clear_api_key_cache:
|
||||
ids: ""
|
||||
ids: "*"
|
||||
|
||||
- match: { _nodes.failed: 0 }
|
||||
|
||||
|
|
|
@ -338,5 +338,5 @@ teardown:
|
|||
|
||||
- do:
|
||||
security.clear_cached_privileges:
|
||||
application: ""
|
||||
application: "*"
|
||||
- match: { _nodes.failed: 0 }
|
||||
|
|
Loading…
Reference in New Issue