From bfedcb4f3c2da84dd51dc886ed8ffc303daf88f7 Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 27 Aug 2018 12:28:25 -0500 Subject: Ensure return errors match API docs In the API docs, we generally state the type of error that should be returned if a container or image cannot be found. In several cases, the code did not match the API doc, when the API doc was correct. Signed-off-by: baude Closes: #1353 Approved by: rhatdan --- pkg/varlinkapi/images.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/varlinkapi') diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go index 7953c1fc6..174225953 100644 --- a/pkg/varlinkapi/images.go +++ b/pkg/varlinkapi/images.go @@ -58,7 +58,7 @@ func (i *LibpodAPI) ListImages(call iopodman.VarlinkCall) error { func (i *LibpodAPI) GetImage(call iopodman.VarlinkCall, name string) error { newImage, err := i.Runtime.ImageRuntime().NewFromLocal(name) if err != nil { - return call.ReplyErrorOccurred(err.Error()) + return call.ReplyImageNotFound(err.Error()) } labels, err := newImage.Labels(getContext()) if err != nil { -- cgit v1.2.3-54-g00ecf