소스 검색

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
 }