mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix the str missing
Fixes: #19072 Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com>
This commit is contained in:
parent
ebc5a4654e
commit
01e873790e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue