We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9acac2 commit 9231981Copy full SHA for 9231981
server/src/internalClusterTest/java/org/elasticsearch/action/search/TransportSearchIT.java
@@ -111,6 +111,14 @@ public void process(FetchSubPhase.HitContext hitContext) {
111
}
112
113
114
+ @Override
115
+ protected Settings nodeSettings(int nodeOrdinal) {
116
+ return Settings.builder()
117
+ .put(super.nodeSettings(nodeOrdinal))
118
+ .put("indices.breaker.request.type", "memory")
119
+ .build();
120
+ }
121
+
122
@Override
123
protected Collection<Class<? extends Plugin>> nodePlugins() {
124
return Collections.singletonList(TestPlugin.class);
0 commit comments