[jboss-svn-commits] JBL Code SVN: r38187 - labs/jbosstm/branches/JBOSSTS_4_16/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Sep 20 06:34:23 EDT 2012


Author: tomjenkinson
Date: 2012-09-20 06:34:23 -0400 (Thu, 20 Sep 2012)
New Revision: 38187

Modified:
   labs/jbosstm/branches/JBOSSTS_4_16/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery/PeriodicRecovery.java
Log:
JBTM-1207 large timeouts

Modified: labs/jbosstm/branches/JBOSSTS_4_16/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery/PeriodicRecovery.java
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_16/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery/PeriodicRecovery.java	2012-09-20 09:24:44 UTC (rev 38186)
+++ labs/jbosstm/branches/JBOSSTS_4_16/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery/PeriodicRecovery.java	2012-09-20 10:34:23 UTC (rev 38187)
@@ -654,7 +654,7 @@
     private void doBackoffWait()
     {
         try {
-            _stateLock.wait(_backoffPeriod * 1000);
+            _stateLock.wait(_backoffPeriod * 1000L);
         } catch (InterruptedException e) {
             // we can ignore this exception
         }
@@ -669,7 +669,7 @@
     private void doPeriodicWait()
     {
         try {
-            _stateLock.wait(_recoveryPeriod * 1000);
+            _stateLock.wait(_recoveryPeriod * 1000L);
         } catch (InterruptedException e) {
             // we can ignore this exception
         }



More information about the jboss-svn-commits mailing list