Commit 6066c70e authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

restore progress messages for older endpoints

parent f10ac5de
...@@ -111,7 +111,7 @@ func CreateHandler(cmd *cobra.Command, args []string) error { ...@@ -111,7 +111,7 @@ func CreateHandler(cmd *cobra.Command, args []string) error {
bar, ok := bars[resp.Digest] bar, ok := bars[resp.Digest]
if !ok { if !ok {
bar = progress.NewBar(resp.Status, resp.Total, resp.Completed) bar = progress.NewBar(fmt.Sprintf("pulling %s...", resp.Digest[7:19]), resp.Total, resp.Completed)
bars[resp.Digest] = bar bars[resp.Digest] = bar
p.Add(resp.Digest, bar) p.Add(resp.Digest, bar)
} }
...@@ -184,7 +184,7 @@ func PushHandler(cmd *cobra.Command, args []string) error { ...@@ -184,7 +184,7 @@ func PushHandler(cmd *cobra.Command, args []string) error {
bar, ok := bars[resp.Digest] bar, ok := bars[resp.Digest]
if !ok { if !ok {
bar = progress.NewBar(resp.Status, resp.Total, resp.Completed) bar = progress.NewBar(fmt.Sprintf("pushing %s...", resp.Digest[7:19]), resp.Total, resp.Completed)
bars[resp.Digest] = bar bars[resp.Digest] = bar
p.Add(resp.Digest, bar) p.Add(resp.Digest, bar)
} }
...@@ -380,7 +380,7 @@ func PullHandler(cmd *cobra.Command, args []string) error { ...@@ -380,7 +380,7 @@ func PullHandler(cmd *cobra.Command, args []string) error {
bar, ok := bars[resp.Digest] bar, ok := bars[resp.Digest]
if !ok { if !ok {
bar = progress.NewBar(resp.Status, resp.Total, resp.Completed) bar = progress.NewBar(fmt.Sprintf("pulling %s...", resp.Digest[7:19]), resp.Total, resp.Completed)
bars[resp.Digest] = bar bars[resp.Digest] = bar
p.Add(resp.Digest, bar) p.Add(resp.Digest, bar)
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment