You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ma...@apache.org on 2009/12/16 18:24:55 UTC

svn commit: r891334 - /lucene/solr/branches/cloud/src/test/org/apache/solr/AbstractDistributedZooKeeperTestCase.java

Author: markrmiller
Date: Wed Dec 16 17:24:54 2009
New Revision: 891334

URL: http://svn.apache.org/viewvc?rev=891334&view=rev
Log:
fix tmp data dir override

Modified:
    lucene/solr/branches/cloud/src/test/org/apache/solr/AbstractDistributedZooKeeperTestCase.java

Modified: lucene/solr/branches/cloud/src/test/org/apache/solr/AbstractDistributedZooKeeperTestCase.java
URL: http://svn.apache.org/viewvc/lucene/solr/branches/cloud/src/test/org/apache/solr/AbstractDistributedZooKeeperTestCase.java?rev=891334&r1=891333&r2=891334&view=diff
==============================================================================
--- lucene/solr/branches/cloud/src/test/org/apache/solr/AbstractDistributedZooKeeperTestCase.java (original)
+++ lucene/solr/branches/cloud/src/test/org/apache/solr/AbstractDistributedZooKeeperTestCase.java Wed Dec 16 17:24:54 2009
@@ -55,7 +55,7 @@
 
     CoreContainer.Initializer init = new CoreContainer.Initializer() {
       {
-        this.dataDir = super.dataDir;
+        this.dataDir = AbstractDistributedZooKeeperTestCase.this.dataDir.getAbsolutePath();
       }
     };