You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2016/05/18 15:02:34 UTC

activemq git commit: Fix data dir path change that shouldn't have been committed with the other fixes.

Repository: activemq
Updated Branches:
  refs/heads/master c2230fda4 -> 088301114


Fix data dir path change that shouldn't have been committed with the
other fixes.  

Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/08830111
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/08830111
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/08830111

Branch: refs/heads/master
Commit: 0883011147d80e1804b1738d2a56294a97ee1b38
Parents: c2230fd
Author: Timothy Bish <ta...@gmail.com>
Authored: Wed May 18 11:02:14 2016 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Wed May 18 11:02:14 2016 -0400

----------------------------------------------------------------------
 .../src/test/java/org/apache/activemq/store/PListTestSupport.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/08830111/activemq-broker/src/test/java/org/apache/activemq/store/PListTestSupport.java
----------------------------------------------------------------------
diff --git a/activemq-broker/src/test/java/org/apache/activemq/store/PListTestSupport.java b/activemq-broker/src/test/java/org/apache/activemq/store/PListTestSupport.java
index 2b4a779..fad72f3 100644
--- a/activemq-broker/src/test/java/org/apache/activemq/store/PListTestSupport.java
+++ b/activemq-broker/src/test/java/org/apache/activemq/store/PListTestSupport.java
@@ -645,8 +645,7 @@ public abstract class PListTestSupport {
 
     @Before
     public void setUp() throws Exception {
-        //File directory = new File("target/test/PlistDB");
-        File directory = new File("/sandbox/temp/plist");
+        File directory = new File("target/test/PlistDB");
         IOHelper.mkdirs(directory);
         IOHelper.deleteChildren(directory);
         startStore(directory);