Repository: camel Updated Branches: refs/heads/master 6aa8233cd -> 55120abf7
CAMEL-9441: Camel-Elasticsearch: Add an operation to know if an index exists or not Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/55120abf Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/55120abf Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/55120abf Branch: refs/heads/master Commit: 55120abf7ffaa6cbdda50bce2b5a223a184fb570 Parents: 6aa8233 Author: Andrea Cosentino <[email protected]> Authored: Tue Dec 22 13:14:12 2015 +0100 Committer: Andrea Cosentino <[email protected]> Committed: Tue Dec 22 13:14:12 2015 +0100 ---------------------------------------------------------------------- .../camel/component/elasticsearch/ElasticsearchConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/55120abf/components/camel-elasticsearch/src/main/java/org/apache/camel/component/elasticsearch/ElasticsearchConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-elasticsearch/src/main/java/org/apache/camel/component/elasticsearch/ElasticsearchConfiguration.java b/components/camel-elasticsearch/src/main/java/org/apache/camel/component/elasticsearch/ElasticsearchConfiguration.java index 0f618f4..78eb43a 100644 --- a/components/camel-elasticsearch/src/main/java/org/apache/camel/component/elasticsearch/ElasticsearchConfiguration.java +++ b/components/camel-elasticsearch/src/main/java/org/apache/camel/component/elasticsearch/ElasticsearchConfiguration.java @@ -33,7 +33,7 @@ public class ElasticsearchConfiguration { @UriPath @Metadata(required = "true") private String clusterName; - @UriParam(enums = "INDEX,UPDATE,BULK,BULK_INDEX,GET_BY_ID,MULTIGET,DELETE") @Metadata(required = "true") + @UriParam(enums = "INDEX,UPDATE,BULK,BULK_INDEX,GET_BY_ID,MULTIGET,DELETE,EXISTS") @Metadata(required = "true") private String operation; @UriParam private String indexName;
