This commit is contained in:
aozhiwei 2024-05-10 17:28:23 +08:00
parent 5f89f20777
commit 251bdb0e54

View File

@ -391,7 +391,11 @@ func (this* mailMgr) procMailUpdate(e *dbEvent) {
{"mail_id", e.param1}, {"mail_id", e.param1},
}, },
func (err error, ds *f5.DataSet) { func (err error, ds *f5.DataSet) {
this.procingEvent = false
if err != nil {
return
}
e.entry.DelInit()
}) })
} }
@ -404,6 +408,10 @@ func (this* mailMgr) procGroupUpdate(e *dbEvent) {
{"group_id", e.param1}, {"group_id", e.param1},
}, },
func (err error, ds *f5.DataSet) { func (err error, ds *f5.DataSet) {
this.procingEvent = false
if err != nil {
return
}
e.entry.DelInit()
}) })
} }