Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo on Elasticsearch aggregation strategy class name #13608

Merged
merged 3 commits into from Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -8,7 +8,7 @@ DurationRoutePolicy
DurationRoutePolicyFactory
EhcacheAggregationRepository
EhcacheIdempotentRepository
ElastichsearchBulkRequestAggregationStrategy
ElasticsearchBulkRequestAggregationStrategy
Etcd3AggregationRepository
FileIdempotentRepository
GroupedBodyAggregationStrategy
Expand Down
@@ -1,10 +1,10 @@
{
"bean": {
"kind": "bean",
"name": "ElastichsearchBulkRequestAggregationStrategy",
"javaType": "org.apache.camel.component.es.aggregation.ElastichsearchBulkRequestAggregationStrategy",
"name": "ElasticsearchBulkRequestAggregationStrategy",
"javaType": "org.apache.camel.component.es.aggregation.ElasticsearchBulkRequestAggregationStrategy",
"interfaceType": "org.apache.camel.AggregationStrategy",
"title": "Elastichsearch Bulk Request Aggregation Strategy",
"title": "Elasticsearch Bulk Request Aggregation Strategy",
"description": "Aggregates two ElasticSearch BulkOperation into a single BulkRequest",
"deprecated": false,
"groupId": "org.apache.camel",
Expand Down
Expand Up @@ -9,13 +9,13 @@
import org.apache.camel.spi.ConfigurerStrategy;
import org.apache.camel.spi.GeneratedPropertyConfigurer;
import org.apache.camel.util.CaseInsensitiveMap;
import org.apache.camel.component.es.aggregation.ElastichsearchBulkRequestAggregationStrategy;
import org.apache.camel.component.es.aggregation.ElasticsearchBulkRequestAggregationStrategy;

/**
* Generated by camel build tools - do NOT edit this file!
*/
@SuppressWarnings("unchecked")
public class ElastichsearchBulkRequestAggregationStrategyConfigurer extends org.apache.camel.support.component.PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
public class ElasticsearchBulkRequestAggregationStrategyConfigurer extends org.apache.camel.support.component.PropertyConfigurerSupport implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {

@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
Expand Down
@@ -1,5 +1,5 @@
# Generated by camel build tools - do NOT edit this file!
bean=ElastichsearchBulkRequestAggregationStrategy
bean=ElasticsearchBulkRequestAggregationStrategy
groupId=org.apache.camel
artifactId=camel-elasticsearch
version=4.5.0-SNAPSHOT
Expand Down
@@ -1,10 +1,10 @@
{
"bean": {
"kind": "bean",
"name": "ElastichsearchBulkRequestAggregationStrategy",
"javaType": "org.apache.camel.component.es.aggregation.ElastichsearchBulkRequestAggregationStrategy",
"name": "ElasticsearchBulkRequestAggregationStrategy",
"javaType": "org.apache.camel.component.es.aggregation.ElasticsearchBulkRequestAggregationStrategy",
"interfaceType": "org.apache.camel.AggregationStrategy",
"title": "Elastichsearch Bulk Request Aggregation Strategy",
"title": "Elasticsearch Bulk Request Aggregation Strategy",
"description": "Aggregates two ElasticSearch BulkOperation into a single BulkRequest",
"deprecated": false,
"groupId": "org.apache.camel",
Expand Down

This file was deleted.

@@ -0,0 +1,2 @@
# Generated by camel build tools - do NOT edit this file!
class=org.apache.camel.component.es.aggregation.ElasticsearchBulkRequestAggregationStrategyConfigurer
Expand Up @@ -30,7 +30,7 @@
description = "Aggregates two ElasticSearch BulkOperation into a single BulkRequest",
annotations = { "interfaceName=org.apache.camel.AggregationStrategy" })
@Configurer(metadataOnly = true)
public class ElastichsearchBulkRequestAggregationStrategy implements AggregationStrategy {
public class ElasticsearchBulkRequestAggregationStrategy implements AggregationStrategy {

@Override
public Exchange aggregate(Exchange oldExchange, Exchange newExchange) {
Expand Down
Expand Up @@ -261,13 +261,13 @@ to use from Camel.

=== camel-elasticsearch / camel-opensearch

The class `BulkRequestAggregationStrategy` has been renamed to `OpensearchBulkRequestAggregationStrategy`
The class `BulkRequestAggregationStrategy` has been renamed to `ElasticsearchBulkRequestAggregationStrategy`
The class `org.apache.camel.component.opensearch.aggregation.BulkRequestAggregationStrategy` has been renamed to `org.apache.camel.component.opensearch.aggregation.OpensearchBulkRequestAggregationStrategy`
The class `org.apache.camel.component.es.aggregation.BulkRequestAggregationStrategy` has been renamed to `org.apache.camel.component.es.aggregation.ElastichsearchBulkRequestAggregationStrategy`

=== camel-spring-redis

The class `RedisIdempotentRepository` has been renamed to `SpringRedisIdempotentRepository`
The class `RedisStringIdempotentRepository` has been renamed to `SpringRedisStringIdempotentRepository`
The class `org.apache.camel.component.redis.processor.idempotent.RedisIdempotentRepository` has been renamed to `org.apache.camel.component.redis.processor.idempotent.SpringRedisIdempotentRepository`
The class `org.apache.camel.component.redis.processor.idempotent.RedisStringIdempotentRepository` has been renamed to `org.apache.camel.component.redis.processor.idempotent.SpringRedisStringIdempotentRepository`


== Camel Spring Boot
Expand Down
Expand Up @@ -14,3 +14,7 @@ For example calling a route that fails due to an exception being thrown (even if
then the variable is no longer set. Also, if the route is marked for rollback, or to stop continue routing with `.stop()`.

This is the same logic that the routing engine uses, whether to continue routing the `Exchange` or not.

=== camel-elasticsearch

The class `org.apache.camel.component.es.aggregation.ElastichsearchBulkRequestAggregationStrategy` has been renamed to `org.apache.camel.component.es.aggregation.ElasticsearchBulkRequestAggregationStrategy`.