the cause can be not found
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1550703 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c9314cb5e7
commit
ce69fd986d
|
@ -157,9 +157,8 @@ public abstract class AbstractRBACManager
|
|||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
log.warn(
|
||||
"Unable to trigger .rbacUserAssignmentSaved( UserAssignment ) to {}", listener.getClass().getName(),
|
||||
e );
|
||||
log.warn( "Unable to trigger .rbacUserAssignmentSaved( UserAssignment ) to {}",
|
||||
listener.getClass().getName(), e );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -741,6 +740,14 @@ public abstract class AbstractRBACManager
|
|||
//it.remove();
|
||||
childRoleNamesUpdated = true;
|
||||
}
|
||||
catch ( RbacManagerException e )
|
||||
{
|
||||
if ( !( e.getCause() instanceof RbacObjectNotFoundException ) )
|
||||
{
|
||||
throw e;
|
||||
}
|
||||
childRoleNamesUpdated = true;
|
||||
}
|
||||
}
|
||||
|
||||
if ( childRoleNamesUpdated )
|
||||
|
|
Loading…
Reference in New Issue