boot版本,目前更新了3.2.0 release 同时更新liteflow之后不能创建租户。
liteflow之前的版本没问题可以正常创建,经过测试发现,TenantServiceImpl中getDictBizs方法中
List dictBizList = dictBizService.list(Wrappers.query().lambda().eq(DictBiz::getParentId, BladeConstant.TOP_PARENT_ID).eq(DictBiz::getIsDeleted, BladeConstant.DB_NOT_DELETED));
是包含tenantid = 000000 这个条件的
liteflow后的getDictBizs方法已经移到TenantDictBizRule这个类中,其中List dictBizList = dictBizService.list(Wrappers.query().lambda().eq(DictBiz::getParentId, BladeConstant.TOP_PARENT_ID).eq(DictBiz::getIsDeleted, BladeConstant.DB_NOT_DELETED));
没有了tenantid = 000000 这个条件。
目前使用liteflow版本之后,测试可能因为这个原因造成了租户构建业务字典不成功,从而创建租户不成功