fix(auth): remove log
This commit is contained in:
parent
113ad0eb43
commit
f3fd1ea4a4
@ -747,7 +747,6 @@ public class TyrSaasAuthServiceImpl implements TyrSaasAuthService {
|
|||||||
boolean suc = distinctSet.add(superAdmin.getIdentityId() + "-" + superAdmin.getIdentityType());
|
boolean suc = distinctSet.add(superAdmin.getIdentityId() + "-" + superAdmin.getIdentityType());
|
||||||
distinctMap.put(superAdmin.getOuId(), distinctSet);
|
distinctMap.put(superAdmin.getOuId(), distinctSet);
|
||||||
if (!suc) {
|
if (!suc) {
|
||||||
log.info("duplicate identity:{}, identityType:{}", superAdmin.getIdentityId(), superAdmin.getIdentityType());
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ListIdentityFromPermissionResp resp = result.getOrDefault(superAdmin.getOuId(), new ListIdentityFromPermissionResp());
|
ListIdentityFromPermissionResp resp = result.getOrDefault(superAdmin.getOuId(), new ListIdentityFromPermissionResp());
|
||||||
@ -783,7 +782,6 @@ public class TyrSaasAuthServiceImpl implements TyrSaasAuthService {
|
|||||||
boolean suc = distinctSet.add(relation.getIdentityId() + "-" + relation.getIdentityType());
|
boolean suc = distinctSet.add(relation.getIdentityId() + "-" + relation.getIdentityType());
|
||||||
distinctMap.put(relation.getOuId(), distinctSet);
|
distinctMap.put(relation.getOuId(), distinctSet);
|
||||||
if (!suc) {
|
if (!suc) {
|
||||||
log.info("duplicate identity:{}, identityType:{}", relation.getIdentityId(), relation.getIdentityType());
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user