Test: Don't force networking mode.

By default use local transport to increase testing speed.
Also Zen discovery is required for plugin tests otherwise Guice errors occur (so far unclear to me what is causing this).

Original commit: elastic/x-pack-elasticsearch@0de574c12f
This commit is contained in:
Martijn van Groningen 2014-11-09 21:17:57 +00:00
parent 15c1b4c56d
commit 0e53268bf2
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public abstract class AbstractAlertingTests extends ElasticsearchIntegrationTest
.put(super.nodeSettings(nodeOrdinal))
.put("scroll.size", randomIntBetween(1, 100))
.put("plugin.types", AlertsPlugin.class.getName())
.put("node.mode", "network")
.put("discovery.type", "zen")
.build();
}