mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-01 16:39:11 +00:00
15 lines
264 B
YAML
15 lines
264 B
YAML
|
---
|
||
|
"Raise 404 when index doesn't exist":
|
||
|
- skip:
|
||
|
version: "0 - 0.90.5"
|
||
|
reason: "get field mapping was added in 0.90.6"
|
||
|
|
||
|
- do:
|
||
|
catch: missing
|
||
|
indices.get_mapping:
|
||
|
index: test_index
|
||
|
type: type
|
||
|
field: field
|
||
|
|
||
|
|