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 1 commit
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