risdenk commented on code in PR #1239: URL: https://github.com/apache/solr/pull/1239#discussion_r1064168669
########## solr/core/src/java/org/apache/solr/core/FileSystemConfigSetService.java: ########## @@ -250,7 +251,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) public FileVisitResult postVisitDirectory(Path dir, IOException ioException) { String relativePath = configDir.relativize(dir).toString(); if (!relativePath.isEmpty()) { - filePaths.add(relativePath + "/"); + filePaths.add(normalizePathToForwardSlash(relativePath + File.separator)); Review Comment: yea I can fix this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org