SOLR-8566: ManagedResource.buildMapToStore initialCapacity tweak. ManagedResource.storeManagedData log.error tweak ("load data" instead of "load stop words").

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1725752 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christine Poerschke 2016-01-20 16:35:39 +00:00
parent 52786181c7
commit e58b14d228
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ public abstract class ManagedResource {
// note: the data we're managing now remains in a dubious state
// however the text analysis component remains unaffected
// (at least until core reload)
log.error("Failed to load stop words from storage due to: "+reloadExc);
log.error("Failed to load data from storage due to: "+reloadExc);
}
}
@ -324,7 +324,7 @@ public abstract class ManagedResource {
* Builds the JSON object to be stored, containing initArgs and managed data fields.
*/
protected Map<String,Object> buildMapToStore(Object managedData) {
Map<String,Object> toStore = new LinkedHashMap<>();
Map<String,Object> toStore = new LinkedHashMap<>(4, 1.0f);
toStore.put(INIT_ARGS_JSON_FIELD, convertNamedListToMap(managedInitArgs));
// report important dates when data was init'd / updated