[jbossts-issues] [JBoss JIRA] (JBTM-1207) large periodic recovery backoffs are bugged

Tom Jenkinson (JIRA) jira-events at lists.jboss.org
Wed Jul 18 10:13:06 EDT 2012


Tom Jenkinson created JBTM-1207:
-----------------------------------

             Summary: large periodic recovery backoffs are bugged
                 Key: JBTM-1207
                 URL: https://issues.jboss.org/browse/JBTM-1207
             Project: JBoss Transaction Manager
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: Recovery
    Affects Versions: 4.16.4
            Reporter: Tom Jenkinson
            Assignee: Tom Jenkinson
             Fix For: 5.0.0.M2


--- a/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery/PeriodicRecovery.java
+++ b/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/recovery/PeriodicRecovery.java
@@ -654,7 +654,7 @@ public class PeriodicRecovery extends Thread
     private void doBackoffWait()
     {
         try {
-            _stateLock.wait(_backoffPeriod * 1000);
+            _stateLock.wait(_backoffPeriod * 1000L);
         } catch (InterruptedException e) {
             // we can ignore this exception
         }


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jbossts-issues mailing list