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
…#963)

Signed-off-by: Martin Gaievski <[email protected]>
(cherry picked from commit a249f21)

Co-authored-by: Martin Gaievski <[email protected]>
  • Loading branch information
1 parent 50a30c6 commit 8e4c728
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 8e4c728

Please sign in to comment.