diff --git a/cli/output/rpc_progress.go b/cli/output/rpc_progress.go index a35f99a53af..f2e478d67fc 100644 --- a/cli/output/rpc_progress.go +++ b/cli/output/rpc_progress.go @@ -64,7 +64,6 @@ func NewDownloadProgressBarCB() func(*rpc.DownloadProgress) { mux.Lock() defer mux.Unlock() - // fmt.Printf(">>> %v\n", curr) if start := curr.GetStart(); start != nil { label = start.GetLabel() bar = pb.New(0) @@ -89,6 +88,7 @@ func NewDownloadProgressBarCB() func(*rpc.DownloadProgress) { } else { feedback.Print(label + " " + msg) } + started = false } } }