diff options
| -rw-r--r-- | libpod/container_api.go | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/libpod/container_api.go b/libpod/container_api.go index 5e8fcea47..fc6cc4a49 100644 --- a/libpod/container_api.go +++ b/libpod/container_api.go @@ -340,12 +340,6 @@ func (c *Container) Exec(tty, privileged bool, env map[string]string, cmd []stri  		if lastErr != nil {  			logrus.Errorf(lastErr.Error())  		} -		// ErrorConmonRead is a bogus value set by podman to indicate reading a value from -		// conmon failed. Since it is specifically not a valid exit code, we should set -		// a generic error here -		if exitCodeData.data == define.ErrorConmonRead { -			exitCodeData.data = define.ExecErrorCodeGeneric -		}  		lastErr = errors.Wrapf(define.ErrOCIRuntime, "non zero exit code: %d", exitCodeData.data)  	} | 
