mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
54612ee2b5
Also adds REST test for /_search_shards Closes #5907
17 lines
264 B
YAML
17 lines
264 B
YAML
---
|
|
"Basic /_search_shards test":
|
|
- do:
|
|
indices.create:
|
|
index: test_1
|
|
|
|
- do:
|
|
cluster.health:
|
|
wait_for_status: yellow
|
|
|
|
- do:
|
|
search_shards:
|
|
index: test_1
|
|
routing: foo
|
|
|
|
- match: { shards.0.0.index: test_1 }
|