diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-23 22:10:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-23 22:10:03 +0100 |
commit | 3825db5aee1afee1dfd06ad9e29f216110396d6f (patch) | |
tree | e5af3145b1506aead8539f37eae994c2fed785e1 /cmd/podman/varlink | |
parent | 0969d725a3b302d9baa0616a204f7fc824404973 (diff) | |
parent | 6208d534645648ccee0e136b0e659cee1c26ab78 (diff) | |
download | podman-3825db5aee1afee1dfd06ad9e29f216110396d6f.tar.gz podman-3825db5aee1afee1dfd06ad9e29f216110396d6f.tar.bz2 podman-3825db5aee1afee1dfd06ad9e29f216110396d6f.zip |
Merge pull request #2404 from baude/remoteerrors
make remote-client error messaging more robust
Diffstat (limited to 'cmd/podman/varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index b9e4ea2ef..618af3481 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -1116,16 +1116,19 @@ method GetPodsByContext(all: bool, latest: bool, args: []string) -> (pods: []str method LoadImage(name: string, inputFile: string, quiet: bool, deleteFile: bool) -> (reply: MoreResponse) # ImageNotFound means the image could not be found by the provided name or ID in local storage. -error ImageNotFound (id: string) +error ImageNotFound (id: string, reason: string) # ContainerNotFound means the container could not be found by the provided name or ID in local storage. -error ContainerNotFound (id: string) +error ContainerNotFound (id: string, reason: string) # NoContainerRunning means none of the containers requested are running in a command that requires a running container. error NoContainerRunning () # PodNotFound means the pod could not be found by the provided name or ID in local storage. -error PodNotFound (name: string) +error PodNotFound (name: string, reason: string) + +# VolumeNotFound means the volume could not be found by the name or ID in local storage. +error VolumeNotFound (id: string, reason: string) # PodContainerError means a container associated with a pod failed to preform an operation. It contains # a container ID of the container that failed. |