1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #29491 from yongtang/12162016-stats-error

Improve error output for `docker stats ...`
This commit is contained in:
Brian Goff 2016-12-21 13:19:20 -05:00 committed by GitHub
commit d65d5db2a0

View file

@ -173,14 +173,13 @@ func runStats(dockerCli *command.DockerCli, opts *statsOptions) error {
var errs []string var errs []string
cStats.mu.Lock() cStats.mu.Lock()
for _, c := range cStats.cs { for _, c := range cStats.cs {
cErr := c.GetError() if err := c.GetError(); err != nil {
if cErr != nil { errs = append(errs, err.Error())
errs = append(errs, fmt.Sprintf("%s: %v", c.Name, cErr))
} }
} }
cStats.mu.Unlock() cStats.mu.Unlock()
if len(errs) > 0 { if len(errs) > 0 {
return fmt.Errorf("%s", strings.Join(errs, ", ")) return fmt.Errorf("%s", strings.Join(errs, "\n"))
} }
} }