From 9da7afb9c6bf846e731f90bf89b3cb8a4c373b70 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Sun, 8 May 2016 05:51:59 -0700 Subject: [PATCH] Err was never being returned Signed-off-by: Doug Davis Upstream-commit: 0687d76ab1f54250ee7611822d4194a44217fa83 Component: engine --- components/engine/integration-cli/docker_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/integration-cli/docker_utils.go b/components/engine/integration-cli/docker_utils.go index e22adc1af2..7e30860d92 100644 --- a/components/engine/integration-cli/docker_utils.go +++ b/components/engine/integration-cli/docker_utils.go @@ -398,7 +398,7 @@ func unpauseContainer(container string) error { err = fmt.Errorf("failed to unpause container") } - return nil + return err } func unpauseAllContainers() error {