Skip to content

Commit

Permalink
Upgrading OpenSearch
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Aug 5, 2024
1 parent fcae849 commit 042f6ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,13 @@ public void push() {
assertEquals(1, task.getExecutions().size());
assertEquals(ExecStatus.SUCCESS.name(), task.getExecutions().get(0).getStatus());

if (IS_EXT_SEARCH_ENABLED) {
try {
Thread.sleep(2000);
} catch (InterruptedException ex) {
// ignore
}
}
tasks = TASK_SERVICE.search(
new TaskQuery.Builder(TaskType.PROPAGATION).resource(RESOURCE_NAME_REST).
anyTypeKind(AnyTypeKind.USER).entityKey(user.getKey()).build());
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ under the License.
<slf4j.version>1.7.36</slf4j.version>

<elasticsearch.version>8.14.3</elasticsearch.version>
<opensearch.version>2.13.0</opensearch.version>
<opensearch-java.version>2.12.0</opensearch-java.version>
<opensearch.version>2.15.0</opensearch.version>
<opensearch-java.version>2.13.0</opensearch-java.version>

<log4j2.version>2.22.0</log4j2.version>
<disruptor.version>3.4.4</disruptor.version>
Expand Down

0 comments on commit 042f6ae

Please sign in to comment.