diff --git a/cluster/store/process.go b/cluster/store/process.go index ea17dcc4..d7066e13 100644 --- a/cluster/store/process.go +++ b/cluster/store/process.go @@ -72,11 +72,11 @@ func (s *store) updateProcess(cmd CommandUpdateProcess) error { return fmt.Errorf("the process with the ID '%s' doesn't exists%w", srcid, ErrNotFound) } - if p.Config.Equal(cmd.Config) { - return nil - } - if srcid == dstid { + if p.Config.Equal(cmd.Config) { + return nil + } + p.UpdatedAt = time.Now() p.Config = cmd.Config