From 01e873790e587ebbee761b1f52871901c89c0fc4 Mon Sep 17 00:00:00 2001 From: "Kai Qiang Wu(Kennan)" Date: Tue, 5 Jan 2016 09:32:49 +0000 Subject: [PATCH] Fix the str missing Fixes: #19072 Signed-off-by: Kai Qiang Wu(Kennan) --- daemon/container_operations_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/container_operations_unix.go b/daemon/container_operations_unix.go index b5cd2f4aef..fb1f96677f 100644 --- a/daemon/container_operations_unix.go +++ b/daemon/container_operations_unix.go @@ -828,7 +828,7 @@ func (daemon *Daemon) getIpcContainer(container *container.Container) (*containe return nil, err } if !c.IsRunning() { - return nil, derr.ErrorCodeIPCRunning + return nil, derr.ErrorCodeIPCRunning.WithArgs(containerID) } return c, nil }