瀏覽代碼

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

Fix the str missing
Vincent Demeester 9 年之前
父節點
當前提交
fccbbe5726
共有 1 個文件被更改,包括 1 次插入1 次删除
  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
 	}
 	if !c.IsRunning() {
-		return nil, derr.ErrorCodeIPCRunning
+		return nil, derr.ErrorCodeIPCRunning.WithArgs(containerID)
 	}
 	return c, nil
 }