Skip to content

Commit

Permalink
fix bloom filter posting format to get the fpp from the correct settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchy committed Dec 19, 2013
1 parent 46d191c commit a92907c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public BloomFilterPostingsFormatProvider(@IndexSettings Settings indexSettings,
this.delegate = Helper.lookup(indexSettings, postingsFormatSettings.get("delegate"), postingFormatFactories);
this.postingsFormat = new BloomFilterPostingsFormat(
delegate.get(),
BloomFilter.Factory.buildFromString(indexSettings.get("fpp"))
BloomFilter.Factory.buildFromString(postingsFormatSettings.get("fpp"))
);
}

Expand Down

0 comments on commit a92907c

Please sign in to comment.