better log message

This commit is contained in:
kimchy 2010-12-10 00:17:55 +02:00
parent 3f6ed7e1de
commit 9d2fe162fa
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public class MappingUpdatedAction extends TransportMasterNodeOperationAction<Map
try {
metaDataMappingService.updateMapping(request.index(), request.type(), request.mappingSource());
} catch (Exception e) {
throw new ElasticSearchParseException("failed to parse mapping form compressed string", e);
throw new ElasticSearchParseException("failed to update mapping", e);
}
return new MappingUpdatedResponse();
}