Description
While normalizing dest it is looking only for '/' in source path but this will not work for windows style delimiter.
/lucene-solr/solr/solrj/src/java/org/apache/solr/common/cloud/ZkMaintenanceUtils.java
private static String normalizeDest(String srcName, String dstName) {
if (dstName.endsWith("/")) { // Dest is a directory.
int pos = srcName.lastIndexOf("/");
if (pos < 0) {
Attachments
Attachments
Issue Links
- is related to
-
SOLR-10108 bin/solr script recursive copy broken
- Closed