Fix bits/bytes mixup in bloom filter configuration.

V12-Ref: F-77215
This commit is contained in:
Catherine
2026-05-30 15:30:04 +00:00
parent 32300bc16c
commit 101dba6d03
+2 -2
View File
@@ -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