dsmiley commented on code in PR #146:
URL: https://github.com/apache/solr/pull/146#discussion_r1044864840


##########
solr/core/src/java/org/apache/solr/core/FileSystemConfigSetService.java:
##########
@@ -148,4 +283,12 @@ protected Long getCurrentSchemaModificationVersion(
       return null; // debatable; we'll see an error soon if there's a real 
problem
     }
   }
+
+  protected Path getConfigDir(String configName) throws IOException {
+    Path path = configSetBase.resolve(configName).normalize();

Review Comment:
   ```suggestion
       // startsWith works simply; we must normalize()
       Path path = configSetBase.resolve(configName).normalize();
   ```



-- 
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

Reply via email to