dsmiley commented on a change in pull request #23: URL: https://github.com/apache/solr/pull/23#discussion_r603738550
########## File path: solr/core/src/test/org/apache/solr/cloud/TestConfigSetsAPI.java ########## @@ -1216,15 +1212,15 @@ public void testList() throws Exception { * * @see SolrDispatchFilter#SOLR_DEFAULT_CONFDIR_ATTRIBUTE * @see #setDefaultConfigDirSysPropIfNotSet - * @see ZkController#getDefaultConfigDirPath + * @see ZkConfigSetService#getDefaultConfigDirPath */ @Test public void testUserAndTestDefaultConfigsetsAreSame() throws IOException { final File extPath = new File(ExternalPaths.DEFAULT_CONFIGSET); assertTrue("_default dir doesn't exist: " + ExternalPaths.DEFAULT_CONFIGSET, extPath.exists()); assertTrue("_default dir isn't a dir: " + ExternalPaths.DEFAULT_CONFIGSET, extPath.isDirectory()); - final String zkBootStrap = ZkController.getDefaultConfigDirPath(); + final String zkBootStrap = ZkConfigSetService.getDefaultConfigDirPath(); Review comment: That shouldn't prevent you calling it? (make it protected access) -- 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...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org