You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by er...@apache.org on 2016/07/04 17:36:21 UTC

lucene-solr:branch_6x: SOLR-9194: Enhance the bin/solr script to perform file operations to/from Zookeeper. Windows text fix 3 (cherry picked from commit 9dd9a6f)

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x bb8fc6f29 -> 71842a627


SOLR-9194: Enhance the bin/solr script to perform file operations to/from Zookeeper. Windows text fix 3
(cherry picked from commit 9dd9a6f)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/71842a62
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/71842a62
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/71842a62

Branch: refs/heads/branch_6x
Commit: 71842a627772f804ca2c97b09487137d368f7d8d
Parents: bb8fc6f
Author: Erick Erickson <er...@apache.org>
Authored: Mon Jul 4 10:25:40 2016 -0700
Committer: Erick Erickson <er...@apache.org>
Committed: Mon Jul 4 10:27:21 2016 -0700

----------------------------------------------------------------------
 solr/core/src/test/org/apache/solr/cloud/SolrCLIZkUtilsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/71842a62/solr/core/src/test/org/apache/solr/cloud/SolrCLIZkUtilsTest.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/cloud/SolrCLIZkUtilsTest.java b/solr/core/src/test/org/apache/solr/cloud/SolrCLIZkUtilsTest.java
index 5f1e151..082b618 100644
--- a/solr/core/src/test/org/apache/solr/cloud/SolrCLIZkUtilsTest.java
+++ b/solr/core/src/test/org/apache/solr/cloud/SolrCLIZkUtilsTest.java
@@ -153,7 +153,7 @@ public class SolrCLIZkUtilsTest extends SolrCloudTestCase {
     Path tmp = createTempDir("tmpNewPlace2");
     args = new String[]{
         "-src", "zk:/configs/cp1",
-        "-dst", "file:/" + tmp.toAbsolutePath().toString(),
+        "-dst", "file:" + tmp.toAbsolutePath().toString(),
         "-recurse", "true",
         "-zkHost", zkAddr,
     };