diff --git a/business/jxstore/cms/sync2.go b/business/jxstore/cms/sync2.go index f19c46b32..dde1eea01 100644 --- a/business/jxstore/cms/sync2.go +++ b/business/jxstore/cms/sync2.go @@ -351,7 +351,11 @@ func onUpdateThing(ctx *jxcontext.Context, db *dao.DaoDB, vendorInfoList []*mode updateThingMapEntity(db, thingMap) } else { - errList.AddErr(err2) + if dao.IsNoRowsError(err2) { + err2 = nil + } else { + errList.AddErr(err2) + } } } err = errList.GetErrListAsOne()