1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-29 18:04:15 +02:00

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