Skip to content

Commit 179cb1a

Browse files
authored
Include AdditionalCodecs argument to allow additional Codec registration (#1636)
Signed-off-by: Andriy Redko <drreta@gmail.com>
1 parent 9584520 commit 179cb1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/opensearch/securityanalytics/correlation/index/codec/CorrelationCodecService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class CorrelationCodecService extends CodecService {
1515
private final MapperService mapperService;
1616

1717
public CorrelationCodecService(CodecServiceConfig codecServiceConfig, IndexSettings indexSettings) {
18-
super(codecServiceConfig.getMapperService(), indexSettings, codecServiceConfig.getLogger());
18+
super(codecServiceConfig.getMapperService(), indexSettings, codecServiceConfig.getLogger(), codecServiceConfig.getAdditionalCodecs());
1919
mapperService = codecServiceConfig.getMapperService();
2020
}
2121

0 commit comments

Comments
 (0)