mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 14:35:04 +00:00
This commit disables marvel when running the watcher with groovy tests. Marvel creates indices and expect the cluster to be green, which won't happen with the marvel indices existing and expecting a replica. See elastic/elasticsearch#1087 Original commit: elastic/x-pack-elasticsearch@8d163a53b7
16 lines
460 B
Groovy
16 lines
460 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-groovy', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
|
systemProperty 'es.script.inline', 'on'
|
|
systemProperty 'es.shield.enabled', 'false'
|
|
systemProperty 'es.marvel.enabled', 'false'
|
|
}
|
|
}
|