Merge pull request #22589 from duglin/fixErr

Err was never being returned
This commit is contained in:
Vincent Demeester 2016-05-08 17:31:43 +02:00
commit 1e4068713b
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ func unpauseContainer(container string) error {
err = fmt.Errorf("failed to unpause container")
}
return nil
return err
}
func unpauseAllContainers() error {