noblepaul commented on a change in pull request #1666: URL: https://github.com/apache/lucene-solr/pull/1666#discussion_r453280096
########## File path: solr/core/src/java/org/apache/solr/core/CoreContainer.java ########## @@ -1588,20 +1576,28 @@ private CoreDescriptor reloadCoreDescriptor(CoreDescriptor oldDesc) { return ret; } + public void reload(String name) { + reload(name, null); + } /** * Recreates a SolrCore. * While the new core is loading, requests will continue to be dispatched to * and processed by the old core * * @param name the name of the SolrCore to reload + * @param coreId The unique identifier of the core Review comment: It's possible that multiple core reloads are issued in parallel by different components. If a core is already reloaded , it shouldn't try to load it again ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org