This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 8bf180c Regen docs 8bf180c is described below commit 8bf180c8ea72e8d5122b448edc45f2d5d914d6cd Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Sep 25 08:10:21 2019 +0200 Regen docs --- docs/components/modules/ROOT/pages/metrics-component.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/components/modules/ROOT/pages/metrics-component.adoc b/docs/components/modules/ROOT/pages/metrics-component.adoc index 3fc6412..81592ec 100644 --- a/docs/components/modules/ROOT/pages/metrics-component.adoc +++ b/docs/components/modules/ROOT/pages/metrics-component.adoc @@ -440,14 +440,14 @@ component URI. |======================================================================= |Name |Description |Expected type |CamelMetricsTimerAction |Override timer action in URI -|`org.apache.camel.component.metrics.timer.TimerEndpoint.TimerAction` +|`org.apache.camel.component.metrics.MetricsTimerAction` |======================================================================= [source,java] ---- // sets timer action using header from("direct:in") - .setHeader(MetricsConstants.HEADER_TIMER_ACTION, TimerAction.start) + .setHeader(MetricsConstants.HEADER_TIMER_ACTION, MetricsTimerAction.start) .to("metrics:timer:simple.timer") .to("direct:out"); ----