File tree 2 files changed +3
-1
lines changed
server/src/main/java/org/opensearch/plugins
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
opensearch = 3.0.0
2
- lucene = 9.11.0-snapshot-fb97840
2
+ lucene = 9.11.0-SNAPSHOT
3
3
4
4
bundled_jdk_vendor = adoptium
5
5
bundled_jdk = 21.0.3+9
Original file line number Diff line number Diff line change 36
36
import org .apache .logging .log4j .Logger ;
37
37
import org .apache .lucene .codecs .Codec ;
38
38
import org .apache .lucene .codecs .DocValuesFormat ;
39
+ import org .apache .lucene .codecs .KnnVectorsFormat ;
39
40
import org .apache .lucene .codecs .PostingsFormat ;
40
41
import org .apache .lucene .util .SPIClassIterator ;
41
42
import org .opensearch .Build ;
@@ -762,6 +763,7 @@ static void reloadLuceneSPI(ClassLoader loader) {
762
763
// Codecs:
763
764
PostingsFormat .reloadPostingsFormats (loader );
764
765
DocValuesFormat .reloadDocValuesFormats (loader );
766
+ KnnVectorsFormat .reloadKnnVectorsFormat (loader );
765
767
Codec .reloadCodecs (loader );
766
768
}
767
769
You can’t perform that action at this time.
0 commit comments