Skip to content

Commit

Permalink
disabled disk allocation threshold check for es 8.12 test container t…
Browse files Browse the repository at this point in the history
…o avoid problems related to environment specific resource allocation
  • Loading branch information
RobertoSannino authored and vga91 committed Mar 19, 2024
1 parent 734875c commit ed179d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion extended/src/test/java/apoc/es/ElasticVersionEightTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public static void setUp() throws Exception {
"id", ES_ID, "type", ES_TYPE, "config", config);

String tag = "8.12.1";
Map<String, String> envMap = Map.of("xpack.security.http.ssl.enabled", "false");
Map<String, String> envMap = Map.of(
"xpack.security.http.ssl.enabled", "false",
"cluster.routing.allocation.disk.threshold_enabled","false"
);

getElasticContainer(tag, envMap, params);
}
Expand Down

0 comments on commit ed179d4

Please sign in to comment.