mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-29 11:28:30 +00:00
Adds an `xpack.ml.enabled` node level setting that can be used to enable and disable the plugin. This will be important when we migrate to X-Pack Closes elastic/elasticsearch#781 Original commit: elastic/x-pack-elasticsearch@e5c4969a96
16 lines
374 B
Groovy
16 lines
374 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
setting 'xpack.ml.enabled', 'false'
|
|
numNodes = 1
|
|
distribution = 'zip'
|
|
plugin ':prelert-legacy:elasticsearch'
|
|
}
|
|
}
|