This is an automated email from the ASF dual-hosted git repository.
tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new bb7d9da94 TIKA-4155 -- bump to 2.10.0, turn off shmsize and hope for
the best
bb7d9da94 is described below
commit bb7d9da94855658186e271bd8798868c2b91b74c
Author: tallison <[email protected]>
AuthorDate: Wed Oct 11 12:16:24 2023 -0400
TIKA-4155 -- bump to 2.10.0, turn off shmsize and hope for the best
---
.../apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
index 94f3dd5a4..fc4063797 100644
---
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
+++
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
@@ -34,15 +34,14 @@ import
org.apache.tika.pipes.xsearch.tests.TikaPipesXSearchBase;
public class TikaPipesOpenSearchTest extends TikaPipesXSearchBase {
private static final Logger LOG =
LoggerFactory.getLogger(TikaPipesOpenSearchTest.class);
- private static final String DOCKER_IMAGE_NAME =
"opensearchproject/opensearch:2.8.0";
+ private static final String DOCKER_IMAGE_NAME =
"opensearchproject/opensearch:2.10.0";
@Container
public static GenericContainer<?> OPEN_SEARCH_CONTAINER =
new GenericContainer<>(DockerImageName.parse(DOCKER_IMAGE_NAME))
.withExposedPorts(9200)
.withStartupTimeout(Duration.of(180, ChronoUnit.SECONDS))
- .withEnv("discovery.type", "single-node")
- .withSharedMemorySize(4294967296l);
+ .withEnv("discovery.type", "single-node");
@BeforeEach