Skip to content

Commit

Permalink
Disable Bloom Filter as for #2601
Browse files Browse the repository at this point in the history
It causes AllKeysChan not to return all keys, which breaks bloom filter.

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
  • Loading branch information
Kubuxu committed Jun 22, 2016
1 parent 61ea813 commit 17876d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions blocks/blockstore/bloom_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ func (b *bloomcache) BloomActive() bool {
}

func (b *bloomcache) Rebuild() {
return // #2601 breaks AllKeysChan
ctx := context.TODO()
evt := log.EventBegin(ctx, "bloomcache.Rebuild")
defer evt.Done()
Expand Down

0 comments on commit 17876d9

Please sign in to comment.