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:26:15 UTC

lucene-solr:master: SOLR-9194: Enhance the bin/solr script to perform file operations to/from Zookeeper. Windows text fix 3

Repository: lucene-solr
Updated Branches:
  refs/heads/master fd80ead40 -> 9dd9a6fc9


SOLR-9194: Enhance the bin/solr script to perform file operations to/from Zookeeper. Windows text fix 3


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

Branch: refs/heads/master
Commit: 9dd9a6fc9193e001210fa64adafe5a6a24c966ef
Parents: fd80ead
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:25:40 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/9dd9a6fc/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,
     };