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:
Olivier Lamy 2011-11-17 22:49:50 +00:00
parent 988f8b45f3
commit 83dfa790b3
1 changed files with 2 additions and 1 deletions

View File

@ -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
{