diff options
| author | 2026-03-28 19:58:37 +0000 | |
|---|---|---|
| committer | 2026-03-28 19:58:37 +0000 | |
| commit | ea8373ed78113af57315ae4523d42dfed3a3b1fe (patch) | |
| tree | 835f98905046a8e5564cf6057af450fe03035444 /format/packfile/ingest/idx_write.go | |
| parent | common/iowrap: Add io wrappers (diff) | |
network, internal/progress, format/packfile/ingest: Use WriteFlusher
Diffstat (limited to 'format/packfile/ingest/idx_write.go')
| -rw-r--r-- | format/packfile/ingest/idx_write.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/format/packfile/ingest/idx_write.go b/format/packfile/ingest/idx_write.go index 506788b9..fa139264 100644 --- a/format/packfile/ingest/idx_write.go +++ b/format/packfile/ingest/idx_write.go @@ -83,7 +83,6 @@ func writeIdx(state *ingestState) error { oidMeter := progress.New(progress.Options{ Writer: state.opts.Progress, - Flush: state.opts.ProgressFlush, Title: "writing index object ids", Total: uint64(len(order)), }) @@ -108,7 +107,6 @@ func writeIdx(state *ingestState) error { crcMeter := progress.New(progress.Options{ Writer: state.opts.Progress, - Flush: state.opts.ProgressFlush, Title: "writing index crc32", Total: uint64(len(order)), }) @@ -134,7 +132,6 @@ func writeIdx(state *ingestState) error { largeOffsets := make([]uint64, 0) offsetMeter := progress.New(progress.Options{ Writer: state.opts.Progress, - Flush: state.opts.ProgressFlush, Title: "writing index offsets", Total: uint64(len(order)), }) @@ -178,7 +175,6 @@ func writeIdx(state *ingestState) error { largeOffsetMeter := progress.New(progress.Options{ Writer: state.opts.Progress, - Flush: state.opts.ProgressFlush, Title: "writing index large offsets", Total: total, }) |
