aboutsummaryrefslogtreecommitdiff
path: root/format/pack
diff options
context:
space:
mode:
Diffstat (limited to 'format/pack')
-rw-r--r--format/pack/ingest/thin_fix.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/format/pack/ingest/thin_fix.go b/format/pack/ingest/thin_fix.go
index 9dc65475..9013dbc8 100644
--- a/format/pack/ingest/thin_fix.go
+++ b/format/pack/ingest/thin_fix.go
@@ -64,6 +64,7 @@ func maybeFixThin(state *ingestState) error {
Title: "fixing thin pack",
Total: uint64(total),
})
+ meter.Set(0, 0)
var appended uint64
@@ -93,9 +94,7 @@ func maybeFixThin(state *ingestState) error {
return err
}
- if state.thinFixed {
- meter.Stop("done")
- }
+ meter.Stop(fmt.Sprintf("appended %d/%d, done", appended, total))
return nil
}