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

This commit is contained in:
Erick Erickson 2016-07-04 10:25:40 -07:00
parent fd80ead401
commit 9dd9a6fc91
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class SolrCLIZkUtilsTest extends SolrCloudTestCase {
Path tmp = createTempDir("tmpNewPlace2"); Path tmp = createTempDir("tmpNewPlace2");
args = new String[]{ args = new String[]{
"-src", "zk:/configs/cp1", "-src", "zk:/configs/cp1",
"-dst", "file:/" + tmp.toAbsolutePath().toString(), "-dst", "file:" + tmp.toAbsolutePath().toString(),
"-recurse", "true", "-recurse", "true",
"-zkHost", zkAddr, "-zkHost", zkAddr,
}; };