You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2018/06/24 11:51:37 UTC

[camel] branch master updated: CAMEL-11893: Moved SolrCloud tmp folder under target

This is an automated email from the ASF dual-hosted git repository.

aldettinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 3152d8e  CAMEL-11893: Moved SolrCloud tmp folder under target
3152d8e is described below

commit 3152d8ec8a3d8777fcd1ec74c33710017dc342a5
Author: aldettinger <al...@gmail.com>
AuthorDate: Sun Jun 24 13:33:20 2018 +0200

    CAMEL-11893: Moved SolrCloud tmp folder under target
---
 .../src/test/java/org/apache/camel/component/solr/SolrCloudFixture.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-solr/src/test/java/org/apache/camel/component/solr/SolrCloudFixture.java b/components/camel-solr/src/test/java/org/apache/camel/component/solr/SolrCloudFixture.java
index cb8f184..29a68f7 100644
--- a/components/camel-solr/src/test/java/org/apache/camel/component/solr/SolrCloudFixture.java
+++ b/components/camel-solr/src/test/java/org/apache/camel/component/solr/SolrCloudFixture.java
@@ -53,7 +53,7 @@ public class SolrCloudFixture {
      */
     static {
         LOG = Logger.getLogger(SolrCloudFixture.class);
-        TEMP_DIR = Paths.get("tmp");
+        TEMP_DIR = Paths.get("target", "tmp");
         try {
             Files.createDirectories(TEMP_DIR);
             LOG.info("Created: " + TEMP_DIR);