Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
1.3
-
None
-
None
Description
It seems the code in CoreContainer.persistFile should begin with:
/** Persists the cores config file in a user provided file. */ public void persistFile(File file) { if (file != null && !file.isAbsolute()) file = new File(configFile.getParentFile(), file.getPath()); log.info("Persisting cores config to " + (file==null ? configFile : file)); ...
The issue today resides in calling file.getName() instead of file.getPath()
Attachments
Attachments
Issue Links
- is depended upon by
-
SOLR-646 Configuration properties enhancements in solr.xml
- Resolved