Repository: camel Updated Branches: refs/heads/master 33cf20844 -> 1c73dfc5e
Component docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/1cfbe4ab Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/1cfbe4ab Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/1cfbe4ab Branch: refs/heads/master Commit: 1cfbe4abb008221bd847032b41e0fafe0b92f9b9 Parents: 33cf208 Author: Claus Ibsen <davscl...@apache.org> Authored: Sun Jun 12 08:36:07 2016 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sun Jun 12 08:36:07 2016 +0200 ---------------------------------------------------------------------- components/camel-consul/src/main/docs/consul.adoc | 4 +++- .../org/apache/camel/component/consul/ConsulConfiguration.java | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/1cfbe4ab/components/camel-consul/src/main/docs/consul.adoc ---------------------------------------------------------------------- diff --git a/components/camel-consul/src/main/docs/consul.adoc b/components/camel-consul/src/main/docs/consul.adoc index c8ae235..167d209 100644 --- a/components/camel-consul/src/main/docs/consul.adoc +++ b/components/camel-consul/src/main/docs/consul.adoc @@ -48,6 +48,7 @@ The Consul component has no options. + // endpoint options: START The Consul component supports 22 endpoint options which are listed below: @@ -61,7 +62,7 @@ The Consul component supports 22 endpoint options which are listed below: | key | common | | String | The default key. Can be overridden by CamelConsulKey | pingInstance | common | true | boolean | Configure if the AgentClient should attempt a ping before returning the Consul instance | readTimeoutMillis | common | | Long | Read timeout for OkHttpClient -| tags | common | | String | Set tags +| tags | common | | String | Set tags. You can separate multiple tags by comma. | url | common | | String | The Consul agent URL | writeTimeoutMillis | common | | Long | Write timeout for OkHttpClient | bridgeErrorHandler | consumer | false | boolean | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN/ERROR level and ignored. @@ -83,6 +84,7 @@ The Consul component supports 22 endpoint options which are listed below: + [[Consul-Headers]] Headers ^^^^^^^ http://git-wip-us.apache.org/repos/asf/camel/blob/1cfbe4ab/components/camel-consul/src/main/java/org/apache/camel/component/consul/ConsulConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-consul/src/main/java/org/apache/camel/component/consul/ConsulConfiguration.java b/components/camel-consul/src/main/java/org/apache/camel/component/consul/ConsulConfiguration.java index 4a93266..e64cd77 100644 --- a/components/camel-consul/src/main/java/org/apache/camel/component/consul/ConsulConfiguration.java +++ b/components/camel-consul/src/main/java/org/apache/camel/component/consul/ConsulConfiguration.java @@ -104,6 +104,9 @@ public class ConsulConfiguration { return tags; } + /** + * Set tags. You can separate multiple tags by comma. + */ public void setTags(Set<String> tags) { this.tags = tags; }