changed ordering of log when queueing tasks, it appears as if the task was queued again after it was executed

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@815697 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2009-09-16 10:01:06 +00:00
parent 8ee59dc910
commit 8604c2f389
1 changed files with 1 additions and 1 deletions

View File

@ -91,8 +91,8 @@ public class SchedulerAction
{
try
{
taskScheduler.queueRepositoryTask( task );
addActionMessage( "Your request to have repository [" + repoid + "] be indexed has been queued." );
taskScheduler.queueRepositoryTask( task );
}
catch ( TaskQueueException e )
{