This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch branch_3x
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/branch_3x by this push:
     new 287ac2d72 try to fix memory pressure complaints in opensearch 
integration tests
287ac2d72 is described below

commit 287ac2d726818b26573906c8cdabe038b623bd1c
Author: tallison <[email protected]>
AuthorDate: Tue Dec 30 15:43:00 2025 -0500

    try to fix memory pressure complaints in opensearch integration tests
---
 .../java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
 
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
index 228778074..ef505ba0d 100644
--- 
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
+++ 
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
@@ -67,7 +67,9 @@ public class OpenSearchTest {
 
     @BeforeAll
     public static void setUp() {
-        CONTAINER = new 
OpensearchContainer<>(OPENSEARCH_IMAGE).withSecurityEnabled();
+        CONTAINER = new 
OpensearchContainer<>(OPENSEARCH_IMAGE).withSecurityEnabled()
+                .withEnv("cluster.routing.allocation.disk.threshold_enabled", 
"false");
+
         CONTAINER.start();
         HttpClientFactory httpClientFactory = new HttpClientFactory();
         httpClientFactory.setUserName(CONTAINER.getUsername());

Reply via email to