mirror of
https://github.com/harness/drone.git
synced 2025-05-17 01:20:13 +08:00
Merge pull request #2239 from tboerger/fix-proc-start-date
Fix procs.proc_started value if not set
This commit is contained in:
commit
b727a3ce55
@ -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