Merge pull request elastic/elasticsearch#412 from clintongormley/real_bulk_body
REST tests: Add a real bulk body to the hijack tests Original commit: elastic/x-pack-elasticsearch@b17e49a3d5
This commit is contained in:
commit
f5fe774340
|
@ -39,10 +39,15 @@
|
||||||
bulk:
|
bulk:
|
||||||
index: ".watches"
|
index: ".watches"
|
||||||
type: "watch"
|
type: "watch"
|
||||||
body: []
|
body:
|
||||||
|
- { "index": {}}
|
||||||
|
- {}
|
||||||
|
|
||||||
|
|
||||||
- do:
|
- do:
|
||||||
catch: /not supported/
|
catch: /not supported/
|
||||||
bulk:
|
bulk:
|
||||||
index: ".watches"
|
index: ".watches"
|
||||||
body: []
|
body:
|
||||||
|
- { "index": {}}
|
||||||
|
- {}
|
||||||
|
|
Loading…
Reference in New Issue