fix bloom filter posting format to get the fpp from the correct settings
This commit is contained in:
parent
46d191c8d4
commit
a92907c47e
|
@ -42,7 +42,7 @@ public class BloomFilterPostingsFormatProvider extends AbstractPostingsFormatPro
|
||||||
this.delegate = Helper.lookup(indexSettings, postingsFormatSettings.get("delegate"), postingFormatFactories);
|
this.delegate = Helper.lookup(indexSettings, postingsFormatSettings.get("delegate"), postingFormatFactories);
|
||||||
this.postingsFormat = new BloomFilterPostingsFormat(
|
this.postingsFormat = new BloomFilterPostingsFormat(
|
||||||
delegate.get(),
|
delegate.get(),
|
||||||
BloomFilter.Factory.buildFromString(indexSettings.get("fpp"))
|
BloomFilter.Factory.buildFromString(postingsFormatSettings.get("fpp"))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue