Skip to content

Commit

Permalink
Add index settings to super constructor call for codec service (#962)
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Gaievski <gaievski@amazon.com>
(cherry picked from commit a249f21)
  • Loading branch information
martin-gaievski authored and github-actions[bot] committed Jul 11, 2023
1 parent 50a30c6 commit 63360b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class KNNCodecService extends CodecService {
private final MapperService mapperService;

public KNNCodecService(CodecServiceConfig codecServiceConfig) {
super(codecServiceConfig.getMapperService(), codecServiceConfig.getLogger());
super(codecServiceConfig.getMapperService(), codecServiceConfig.getIndexSettings(), codecServiceConfig.getLogger());
mapperService = codecServiceConfig.getMapperService();
}

Expand Down

0 comments on commit 63360b9

Please sign in to comment.