Tests: Disable watcher in tribe TribeTransportTestCase

Watcher does not need to run in those tests. Disabling it,
no need for careful stopping then.

Relates elastic/x-pack-elasticsearch#1783

Original commit: elastic/x-pack-elasticsearch@ecca7f2ebd
This commit is contained in:
Alexander Reelsen 2017-08-30 13:48:54 +02:00
parent 80df309bbd
commit 58d16c3579
1 changed files with 2 additions and 0 deletions

View File

@ -189,6 +189,8 @@ public abstract class TribeTransportTestCase extends ESIntegTestCase {
.put(MachineLearning.AUTODETECT_PROCESS.getKey(), false)
.put("tribe.t1." + XPackSettings.SECURITY_ENABLED.getKey(), false)
.put("tribe.t2." + XPackSettings.SECURITY_ENABLED.getKey(), false)
.put("tribe.t1." + XPackSettings.WATCHER_ENABLED.getKey(), false)
.put("tribe.t2." + XPackSettings.WATCHER_ENABLED.getKey(), false)
.put("tribe.t1." + XPackSettings.MACHINE_LEARNING_ENABLED.getKey(), false)
.put("tribe.t2." + XPackSettings.MACHINE_LEARNING_ENABLED.getKey(), false)
.put("tribe.t1." + MachineLearning.AUTODETECT_PROCESS.getKey(), false)