You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by st...@apache.org on 2004/10/21 19:29:40 UTC

svn commit: rev 55237 - in incubator/jackrabbit/trunk: applications/test src/java/org/apache/jackrabbit/core

Author: stefan
Date: Thu Oct 21 10:29:40 2004
New Revision: 55237

Modified:
   incubator/jackrabbit/trunk/applications/test/   (props changed)
   incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/RepositoryImpl.java
Log:
first implementation of jta support

Modified: incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/RepositoryImpl.java
==============================================================================
--- incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/RepositoryImpl.java	(original)
+++ incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/RepositoryImpl.java	Thu Oct 21 10:29:40 2004
@@ -246,7 +246,7 @@
         // @todo rewrite to use file system abstraction (FileSystem interface)
         try {
             File txRootDir = new File(repConfig.getHomeDir(), "tx");
-            txMgr = new TransactionManager(new File("tx"));
+            txMgr = new TransactionManager(txRootDir);
         } catch (IOException ioe) {
             String msg = "failed to initialize internal transaction manager";
             log.error(msg, ioe);