[jboss-cvs] JBossAS SVN: r63282 - branches/Branch_4_2/jmx/src/main/org/jboss/mx/loading.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu May 31 15:27:19 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-05-31 15:27:18 -0400 (Thu, 31 May 2007)
New Revision: 63282

Modified:
   branches/Branch_4_2/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java
Log:
JBAS-4441, the check against numCCE needs to be <= 10 for the retry.

Modified: branches/Branch_4_2/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java
===================================================================
--- branches/Branch_4_2/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java	2007-05-31 18:24:32 UTC (rev 63281)
+++ branches/Branch_4_2/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java	2007-05-31 19:27:18 UTC (rev 63282)
@@ -404,7 +404,7 @@
          boolean retry = e instanceof ClassCircularityError
             || e.getClass().equals(LinkageError.class);
          int numCCE = loadTask.incNumCCE();
-         if( retry && numCCE >= 10 )
+         if( retry && numCCE <= 10 )
          {
             /* Reschedule this task after all existing tasks to allow the
             current load tasks which are conflicting to complete.




More information about the jboss-cvs-commits mailing list