ps displays incorrect exit code

The exit code should be derived in the batch operation and pulled
from the batchinfo struct.

Resolves issue #407

Signed-off-by: baude <bbaude@redhat.com>

Closes: #408
Approved by: rhatdan
This commit is contained in:
baude 2018-02-26 16:26:04 -06:00 committed by Atomic Bot
parent e5ddf34e64
commit f47a5be60d
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ func getTemplateOutput(containers []*libpod.Container, opts psOptions) ([]psTemp
switch batchInfo.conState {
case libpod.ContainerStateStopped:
status = fmt.Sprintf("Exited (%d) %s ago", exitCode, runningFor)
status = fmt.Sprintf("Exited (%d) %s ago", batchInfo.exitCode, runningFor)
case libpod.ContainerStateRunning:
status = "Up " + runningFor + " ago"
case libpod.ContainerStatePaused: