epugh commented on a change in pull request #264: URL: https://github.com/apache/solr/pull/264#discussion_r693484231
########## File path: solr/core/src/java/org/apache/solr/schema/ManagedIndexSchemaFactory.java ########## @@ -195,7 +223,16 @@ private InputStream readSchemaLocally() { InputStream schemaInputStream = null; try { // Attempt to load the managed schema - schemaInputStream = loader.openResource(managedSchemaResourceName); + try { + schemaInputStream = loader.openResource(managedSchemaResourceName); + } + catch (IOException e) { Review comment: Lookis I am stuck with IOException, it won't let me specify SolrResourceNotFoundException. -- 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