dsmiley commented on code in PR #1302: URL: https://github.com/apache/solr/pull/1302#discussion_r1081543949
########## solr/core/src/java/org/apache/solr/core/SolrConfig.java: ########## @@ -393,14 +393,22 @@ private SolrConfig( } private IndexSchemaFactory.VersionedConfig readXml(SolrResourceLoader loader, String name) { + InputStream in = null; try { - ResourceProvider rp = new ResourceProvider(loader, name); + in = loader.openResource(name); + ResourceProvider rp = new ResourceProvider(in); XmlConfigFile xml = new XmlConfigFile(loader, rp, name, null, "/config/", null); return new IndexSchemaFactory.VersionedConfig( rp.zkVersion, new DataConfigNode(new DOMConfigNode(xml.getDocument().getDocumentElement()))); Review Comment: This is an optional feedback mechanism for them to improve Lift. I clicked "Not relevant". -- 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