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>
  • Loading branch information
mch2 committed Sep 5, 2024
1 parent e41873e commit a67add4
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) -> {}
);
}

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) -> {}
);
}

Expand Down

0 comments on commit a67add4

Please sign in to comment.