SOLR-12162: CorePropertiesLocator Exception message contains a typo when unable to create Solr Core

This commit is contained in:
Erick Erickson 2018-03-29 18:01:38 -07:00
parent b5a3678573
commit e55b7e9911
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class CorePropertiesLocator implements CoresLocator {
if (Files.exists(propertiesFile))
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST,
"Could not create a new core in " + cd.getInstanceDir()
+ "as another core is already defined there");
+ " as another core is already defined there");
writePropertiesFile(cd, propertiesFile);
}
}