Merge pull request #19078 from HackToday/19072-fix-str

Fix the str missing
This commit is contained in:
Vincent Demeester 2016-01-05 11:34:36 +01:00
commit fccbbe5726
1 changed files with 1 additions and 1 deletions

View File

@ -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
} }