mirror of https://github.com/apache/archiva.git
skip error in MetadateRepository when deleting a repository; log warn the exception
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1203405 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
988f8b45f3
commit
83dfa790b3
|
@ -403,7 +403,8 @@ public class DefaultManagedRepositoryAdmin
|
|||
}
|
||||
catch ( MetadataRepositoryException e )
|
||||
{
|
||||
throw new RepositoryAdminException( e.getMessage(), e );
|
||||
//throw new RepositoryAdminException( e.getMessage(), e );
|
||||
log.warn( "skip error during removing repository from MetadatRepository:" + e.getMessage(), e );
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue