mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
Multicast has known issues (see #12999 and #12993). This change moves multicast into a plugin, and deprecates it in the docs. It also allows for plugging in multiple zen ping implementations. closes #13019
15 lines
330 B
YAML
15 lines
330 B
YAML
# Integration tests for multicast discovery
|
|
#
|
|
"Multicast discovery loaded":
|
|
- do:
|
|
cluster.state: {}
|
|
|
|
# Get master node id
|
|
- set: { master_node: master }
|
|
|
|
- do:
|
|
nodes.info: {}
|
|
|
|
- match: { nodes.$master.plugins.0.name: discovery-multicast }
|
|
- match: { nodes.$master.plugins.0.jvm: true }
|