DATAES-211 - Fix tests for CDI (jar hell)

This commit is contained in:
Mohsin Husen
2016-02-19 13:42:43 +00:00
parent 42fc41b2eb
commit 4930415302
4 changed files with 113 additions and 136 deletions

View File

@@ -76,9 +76,7 @@ public class NodeClientFactoryBean implements FactoryBean<NodeClient>, Initializ
nodeClient = (NodeClient) nodeBuilder().settings(Settings.builder().put(loadConfig())
.put("http.enabled", String.valueOf(this.enableHttp))
.put("path.home", this.pathHome)
.put("path.data", this.pathData)
.put("script.inline", "on")
)
.put("path.data", this.pathData))
.clusterName(this.clusterName).local(this.local).node()
.client();
}