aboutsummaryrefslogtreecommitdiff
path: root/format/packfile/ingest/idx_write.go
diff options
context:
space:
mode:
Diffstat (limited to 'format/packfile/ingest/idx_write.go')
-rw-r--r--format/packfile/ingest/idx_write.go4
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,
})