diff options
| author | 2026-06-14 13:31:08 +0000 | |
|---|---|---|
| committer | 2026-06-14 13:31:08 +0000 | |
| commit | 4bd2e40d3fa131cb6ccc566c06dd0ca74ae86111 (patch) | |
| tree | 555bea779e9473fe666e2ddbf59105a3953b1934 /object | |
| parent | object/store/packed/internal/ingest: Test that the bloom filter contains (diff) | |
object/store/packed/internal/ingest: Don't use WriteTo
Diffstat (limited to 'object')
| -rw-r--r-- | object/store/packed/internal/ingest/finalize.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/object/store/packed/internal/ingest/finalize.go b/object/store/packed/internal/ingest/finalize.go index 13a7278b..8caf6b2f 100644 --- a/object/store/packed/internal/ingest/finalize.go +++ b/object/store/packed/internal/ingest/finalize.go @@ -45,7 +45,7 @@ func (ingestion *ingestion) finalize() (Result, error) { } bloomTmp, err := ingestion.writeTemp("tmp_bloom_", func(w io.Writer) error { - _, err := bloomBuilder.WriteTo(w) + _, err := w.Write(bloomBuilder.Bytes()) return err }) |
