Browse Source

Fix the str missing
Fixes: #19072
Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com>

Kai Qiang Wu(Kennan) 9 years ago
parent
commit
01e873790e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      daemon/container_operations_unix.go

+ 1 - 1
daemon/container_operations_unix.go

@@ -828,7 +828,7 @@ func (daemon *Daemon) getIpcContainer(container *container.Container) (*containe
 		return nil, err
 		return nil, err
 	}
 	}
 	if !c.IsRunning() {
 	if !c.IsRunning() {
-		return nil, derr.ErrorCodeIPCRunning
+		return nil, derr.ErrorCodeIPCRunning.WithArgs(containerID)
 	}
 	}
 	return c, nil
 	return c, nil
 }
 }