summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorBoaz Shuster <boaz.shuster.github@gmail.com>2021-05-04 00:32:51 +0300
committerBoaz Shuster <boaz.shuster.github@gmail.com>2021-05-04 00:32:51 +0300
commit0c116f40d38a5d86c61a86e8ece19a6a88bd7141 (patch)
treede2bd626cfe6f6ecc7ca24daf2799ddf1c7ef64b /pkg
parenta726a3d79c5bdda13fee2285222360a45e996272 (diff)
downloadpodman-0c116f40d38a5d86c61a86e8ece19a6a88bd7141.tar.gz
podman-0c116f40d38a5d86c61a86e8ece19a6a88bd7141.tar.bz2
podman-0c116f40d38a5d86c61a86e8ece19a6a88bd7141.zip
is this a bug?
Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/domain/infra/tunnel/containers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go
index de7f6f1d4..aa26825e0 100644
--- a/pkg/domain/infra/tunnel/containers.go
+++ b/pkg/domain/infra/tunnel/containers.go
@@ -602,9 +602,9 @@ func (ic *ContainerEngine) ContainerStart(ctx context.Context, namesOrIds []stri
reports = append(reports, &report)
continue
}
+ report.ExitCode = 0
+ reports = append(reports, &report)
}
- report.ExitCode = 0
- reports = append(reports, &report)
}
return reports, nil
}