summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel/helpers.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-14 18:01:18 +0200
committerGitHub <noreply@github.com>2020-04-14 18:01:18 +0200
commita6caae0b5a40ae1ccf536e916624b4f81cdda7f4 (patch)
tree0e07eeba9a90f914c01bf79113e670357377c2d2 /pkg/domain/infra/tunnel/helpers.go
parent01c5915a52d6e5d23ad08fd1fcce38dba20f67db (diff)
parent830f3a4462953b3698a21031db3964d0f0ae63b3 (diff)
downloadpodman-a6caae0b5a40ae1ccf536e916624b4f81cdda7f4.tar.gz
podman-a6caae0b5a40ae1ccf536e916624b4f81cdda7f4.tar.bz2
podman-a6caae0b5a40ae1ccf536e916624b4f81cdda7f4.zip
Merge pull request #5808 from baude/v2psformat2
v2podman ps revert structure changes
Diffstat (limited to 'pkg/domain/infra/tunnel/helpers.go')
-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 4d7e45897..682d60d6a 100644
--- a/pkg/domain/infra/tunnel/helpers.go
+++ b/pkg/domain/infra/tunnel/helpers.go
@@ -30,7 +30,7 @@ func getContainersByContext(contextWithConnection context.Context, all bool, nam
for _, id := range namesOrIds {
var found bool
for _, con := range c {
- if id == con.ID || strings.HasPrefix(con.ID, id) || util.StringInSlice(id, con.ContainerNames) {
+ if id == con.ID || strings.HasPrefix(con.ID, id) || util.StringInSlice(id, con.Names) {
cons = append(cons, con)
found = true
break