Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
NEXUS-4198: fix
Browse files Browse the repository at this point in the history
git-svn-id: file:///opt/svn/repositories/sonatype.org/nexus/trunk/nexus@7972 2aa8b3fc-8ebb-4439-a84f-95066eaea8ab
  • Loading branch information
cstamas committed Apr 1, 2011
1 parent 77a8000 commit 7423185
Showing 1 changed file with 9 additions and 4 deletions.
Expand Up @@ -32,6 +32,7 @@
import org.sonatype.nexus.proxy.LocalStorageException;
import org.sonatype.nexus.proxy.NoSuchRepositoryException;
import org.sonatype.nexus.proxy.NoSuchResourceStoreException;
import org.sonatype.nexus.proxy.RepositoryNotAvailableException;
import org.sonatype.nexus.proxy.ResourceStoreRequest;
import org.sonatype.nexus.proxy.StorageException;
import org.sonatype.nexus.proxy.access.AccessManager;
Expand Down Expand Up @@ -424,6 +425,14 @@ public List<StorageItem> doRetrieveItems( ResourceStoreRequest request )

items.add( item );
}
catch ( ItemNotFoundException e )
{
// that's okay
}
catch ( RepositoryNotAvailableException e )
{
// that's fine, mute it
}
catch ( StorageException e )
{
throw e;
Expand All @@ -432,10 +441,6 @@ public List<StorageItem> doRetrieveItems( ResourceStoreRequest request )
{
getLogger().warn( "Member repository request failed", e );
}
catch ( ItemNotFoundException e )
{
// that's okay
}
}
else
{
Expand Down

0 comments on commit 7423185

Please sign in to comment.