Skip to content

Commit

Permalink
fix compilation from extra ctors on 2.x line
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Handalian <marc.handalian@gmail.com>
(cherry picked from commit a67add4)
  • Loading branch information
mch2 committed Sep 5, 2024
1 parent d3b3a93 commit 9203a3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion server/src/main/java/org/opensearch/index/IndexService.java
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,8 @@ public IndexService(
recoverySettings,
remoteStoreSettings,
fileCache,
null
null,
(s) -> {}

Check warning on line 399 in server/src/main/java/org/opensearch/index/IndexService.java

View check run for this annotation

Codecov / codecov/patch

server/src/main/java/org/opensearch/index/IndexService.java#L399

Added line #L399 was not covered by tests
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,8 @@ public IndicesService(
cacheService,
remoteStoreSettings,
fileCache,
null
null,
(s) -> {}

Check warning on line 574 in server/src/main/java/org/opensearch/indices/IndicesService.java

View check run for this annotation

Codecov / codecov/patch

server/src/main/java/org/opensearch/indices/IndicesService.java#L574

Added line #L574 was not covered by tests
);
}

Expand Down

0 comments on commit 9203a3e

Please sign in to comment.