We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a9c75 commit c4b07c3Copy full SHA for c4b07c3
src/test/java/org/elasticsearch/test/ElasticsearchSingleNodeTest.java
@@ -135,7 +135,7 @@ private static Node newNode(boolean localGateway) {
135
.put("script.indexed", "on")
136
.put(EsExecutors.PROCESSORS, 1) // limit the number of threads created
137
.put("http.enabled", false)
138
- .put("index.store.type", "ram")
+ .put("index.store.type", localGateway ? "fs" : "ram")
139
.put("config.ignore_system_properties", true) // make sure we get what we set :)
140
.put("gateway.type", localGateway ? "local" : "none")).build();
141
build.start();
0 commit comments