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:
parent
8c7d48ebed
commit
2c9d50ccc6
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user