From 68e3c0a08e5f349e480e69335e52ef8dbdb26e47 Mon Sep 17 00:00:00 2001 From: jaymode Date: Mon, 7 Dec 2015 06:39:33 -0500 Subject: [PATCH] test: disable marvel for watcher with groovy tests 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@8d163a53b755377516a9488290b74500c4bd88ca --- elasticsearch/qa/smoke-test-watcher-with-groovy/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/elasticsearch/qa/smoke-test-watcher-with-groovy/build.gradle b/elasticsearch/qa/smoke-test-watcher-with-groovy/build.gradle index f2fdbcb472b..a2f70806254 100644 --- a/elasticsearch/qa/smoke-test-watcher-with-groovy/build.gradle +++ b/elasticsearch/qa/smoke-test-watcher-with-groovy/build.gradle @@ -10,5 +10,6 @@ integTest { plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack') systemProperty 'es.script.inline', 'on' systemProperty 'es.shield.enabled', 'false' + systemProperty 'es.marvel.enabled', 'false' } }