mirror of
https://github.com/harness/drone.git
synced 2025-05-19 02:20:03 +08:00
Fix procs.proc_started value if not set
This commit is contained in:
parent
bb8c569249
commit
5abfd70c53
@ -184,6 +184,10 @@ func (s *RPC) Update(c context.Context, id string, state rpc.State) error {
|
||||
proc.State = model.StatusRunning
|
||||
}
|
||||
|
||||
if proc.Started == 0 && proc.Stopped != 0 {
|
||||
proc.Started = build.Started
|
||||
}
|
||||
|
||||
if err := s.store.ProcUpdate(proc); err != nil {
|
||||
log.Printf("error: rpc.update: cannot update proc: %s", err)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user