should use correct status for killed

This commit is contained in:
Brad Rydzewski 2017-09-15 09:04:21 -07:00
parent 8c7d48ebed
commit 2c9d50ccc6

View file

@ -176,6 +176,9 @@ func (s *RPC) Update(c context.Context, id string, state rpc.State) error {
if state.ExitCode != 0 || state.Error != "" {
proc.State = model.StatusFailure
}
if state.ExitCode == 137 {
proc.State = model.StatusKilled
}
} else {
proc.Started = state.Started
proc.State = model.StatusRunning