You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ke...@apache.org on 2007/09/21 21:20:58 UTC

svn commit: r578236 - /geronimo/components/txmanager/branches/2.0/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java

Author: kevan
Date: Fri Sep 21 12:20:57 2007
New Revision: 578236

URL: http://svn.apache.org/viewvc?rev=578236&view=rev
Log:
GERONIMO-3477 call to recoveryLog() was accidentally deleted during some code refactoring. It's needed for proper recovery of indoubt transactions. This appears to resolve the recovery issue

Modified:
    geronimo/components/txmanager/branches/2.0/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java

Modified: geronimo/components/txmanager/branches/2.0/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java
URL: http://svn.apache.org/viewvc/geronimo/components/txmanager/branches/2.0/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java?rev=578236&r1=578235&r2=578236&view=diff
==============================================================================
--- geronimo/components/txmanager/branches/2.0/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java (original)
+++ geronimo/components/txmanager/branches/2.0/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java Fri Sep 21 12:20:57 2007
@@ -95,6 +95,7 @@
         }
 
         recovery = new RecoveryImpl(this.transactionLog, this.xidFactory);
+        recovery.recoverLog();
     }
 
     public Transaction getTransaction() {