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:
parent
80df309bbd
commit
58d16c3579
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue