fix assertion in unQueueTask !

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1174541 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-09-23 06:42:13 +00:00
parent 38036165f0
commit 041699f218
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ public class RepositoryArchivaTaskScheduler
{
synchronized ( repositoryScanningQueue )
{
if ( isProcessingRepositoryTask( task ) )
if ( !isProcessingRepositoryTask( task ) )
{
log.info( "cannot unqueue Repository task '{}' not already queued.", task );
return false;