diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-06 09:27:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 09:27:17 -0400 |
commit | f40474521b577153e960ea1dd9601b67307aeede (patch) | |
tree | ffd7d17ec55125c13fbce511fdc0a404f45e2555 /libpod | |
parent | 83ef2c721ad438256b136b3491e504a6e70b64c9 (diff) | |
parent | ab4d33e146eab7cd685bb266e38ca62782642036 (diff) | |
download | podman-f40474521b577153e960ea1dd9601b67307aeede.tar.gz podman-f40474521b577153e960ea1dd9601b67307aeede.tar.bz2 podman-f40474521b577153e960ea1dd9601b67307aeede.zip |
Merge pull request #14132 from mheon/bump_410
Bump to v4.1.0
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container.go | 14 | ||||
-rw-r--r-- | libpod/oci_attach_linux.go | 3 |
2 files changed, 15 insertions, 2 deletions
diff --git a/libpod/container.go b/libpod/container.go index 3e7ab7b0a..457b290b7 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -288,6 +288,15 @@ func (c *Container) Config() *ContainerConfig { return nil } + if c != nil { + networks, err := c.networks() + if err != nil { + return nil + } + + returnConfig.Networks = networks + } + return returnConfig } @@ -1260,7 +1269,10 @@ func (c *Container) NetworkMode() string { // Unlocked accessor for networks func (c *Container) networks() (map[string]types.PerNetworkOptions, error) { - return c.runtime.state.GetNetworks(c) + if c != nil && c.runtime != nil && c.runtime.state != nil { // can fail if c.networks is called from the tests + return c.runtime.state.GetNetworks(c) + } + return nil, nil } // getInterfaceByName returns a formatted interface name for a given diff --git a/libpod/oci_attach_linux.go b/libpod/oci_attach_linux.go index c6af294d5..06f8f8719 100644 --- a/libpod/oci_attach_linux.go +++ b/libpod/oci_attach_linux.go @@ -9,6 +9,7 @@ import ( "net" "os" "path/filepath" + "syscall" "github.com/containers/common/pkg/config" "github.com/containers/podman/v4/libpod/define" @@ -259,7 +260,7 @@ func redirectResponseToOutputStreams(outputStream, errorStream io.Writer, writeO } } } - if er == io.EOF { + if errors.Is(er, io.EOF) || errors.Is(er, syscall.ECONNRESET) { break } if er != nil { |