修复(#83): 修复脚本目录全量测试构建失败

Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
2026-05-26 22:28:36 -07:00
parent 25811526bd
commit b7691567d8
7 changed files with 12 additions and 5 deletions
@@ -29,7 +29,7 @@ func (l *DeleteSubscribeApplicationLogic) DeleteSubscribeApplication(req *types.
err := l.svcCtx.ClientModel.Delete(l.ctx, req.Id)
if err != nil {
l.Errorf("Failed to delete subscribe application with ID %d: %v", req.Id, err)
return errors.Wrapf(xerr.NewErrCode(xerr.DatabaseDeletedError), err.Error())
return errors.Wrap(xerr.NewErrCode(xerr.DatabaseDeletedError), err.Error())
}
return nil
}