From 4ddf5700e21afd5739af4db6bce64bf4a528cd86 Mon Sep 17 00:00:00 2001 From: Olin Blodgett Date: Tue, 27 Aug 2024 09:16:04 -0600 Subject: [PATCH 1/2] Updated cluster version --- src/main/resources/application.properties.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties.defaults b/src/main/resources/application.properties.defaults index 2f736b0ce..f1cf5b070 100644 --- a/src/main/resources/application.properties.defaults +++ b/src/main/resources/application.properties.defaults @@ -34,7 +34,7 @@ quarkus.flyway.clean-disabled=true quarkus.elasticsearch.protocol = http -quarkus.hibernate-search-orm.elasticsearch.version=opensearch:2.13.0 +quarkus.hibernate-search-orm.elasticsearch.version=opensearch:2.16.0 quarkus.hibernate-search-orm.elasticsearch.protocol=http quarkus.hibernate-search-orm.elasticsearch.read-timeout=600S quarkus.hibernate-search-orm.schema-management.strategy=create-or-update From ee7d1805f4f6bce2abebb77f880e765d55a55f1d Mon Sep 17 00:00:00 2001 From: Olin Blodgett Date: Tue, 27 Aug 2024 09:42:03 -0600 Subject: [PATCH 2/2] updated the test containers --- .../curation_api/resources/TestContainerResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/alliancegenome/curation_api/resources/TestContainerResource.java b/src/test/java/org/alliancegenome/curation_api/resources/TestContainerResource.java index 589d87d2f..36e7e4151 100644 --- a/src/test/java/org/alliancegenome/curation_api/resources/TestContainerResource.java +++ b/src/test/java/org/alliancegenome/curation_api/resources/TestContainerResource.java @@ -24,7 +24,7 @@ public Map start() { DockerImageName esImage = DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:7.10.2").asCompatibleSubstituteFor("docker.elastic.co/elasticsearch/elasticsearch"); //esContainer = new ElasticsearchContainer(esImage); - osContainer = new OpenSearchContainer("opensearchproject/opensearch:2.13.0"); + osContainer = new OpenSearchContainer("opensearchproject/opensearch:2.16.0"); pgContainer = new PostgreSQLContainer("postgres:14.2");