[fix] bind table bug

This commit is contained in:
Max 2022-10-22 11:54:42 +08:00
parent 9be7c25998
commit c081bd43ed

View file

@ -43,6 +43,10 @@ func (p *Process) Merge(newProcess *Process) *Process {
p.Process = newProcess.Process
}
if p.ProcessBind == "" {
p.ProcessBind = newProcess.ProcessBind
}
if p.Guard == "" {
p.Guard = newProcess.Guard
}