summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-05-20 01:45:00 +0200
committerGitHub <noreply@github.com>2020-05-20 01:45:00 +0200
commit4eee0d840f0af81560d89864ea64b95c9e70b18d (patch)
tree684b0400d186ef9f6c20314a951f10ecec185bae /pkg
parent0f8ad039235137d086b9fea33bb74b362e625cdd (diff)
parent8ec08a426e7024d597281dc0af9168f340e10d5d (diff)
downloadpodman-4eee0d840f0af81560d89864ea64b95c9e70b18d.tar.gz
podman-4eee0d840f0af81560d89864ea64b95c9e70b18d.tar.bz2
podman-4eee0d840f0af81560d89864ea64b95c9e70b18d.zip
Merge pull request #6177 from baude/v2enableremote
v2 enable remote integration tests
Diffstat (limited to 'pkg')
-rw-r--r--pkg/domain/infra/tunnel/helpers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/helpers.go b/pkg/domain/infra/tunnel/helpers.go
index 09791a3b9..862c7a5d6 100644
--- a/pkg/domain/infra/tunnel/helpers.go
+++ b/pkg/domain/infra/tunnel/helpers.go
@@ -37,7 +37,7 @@ func getContainersByContext(contextWithConnection context.Context, all bool, nam
}
}
if !found {
- return nil, errors.Errorf("unable to find container %q", id)
+ return nil, errors.Wrapf(define.ErrNoSuchCtr, "unable to find container %q", id)
}
}
return cons, nil