From 101dba6d03964eb5277ac7f0096f39b7a17d7c1f Mon Sep 17 00:00:00 2001 From: Catherine Date: Sat, 30 May 2026 15:30:04 +0000 Subject: [PATCH] Fix bits/bytes mixup in bloom filter configuration. V12-Ref: F-77215 --- src/existence.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/existence.go b/src/existence.go index 1520a94..14c1951 100644 --- a/src/existence.go +++ b/src/existence.go @@ -114,8 +114,8 @@ func (c *bloomExistenceCache) refresh(ctx context.Context) error { } // Create two 256 KiB Bloom filters that will fit ~150K entries each with 0.1% false positive rate. - sites := bloom.New(256*1024, 10) - domains := bloom.New(256*1024, 10) + sites := bloom.New(256*1024*8, 10) + domains := bloom.New(256*1024*8, 10) logc.Printf(ctx, "existence: refreshing") siteCount := 0