This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 318d6955edc0b31958dee6c494eaf4ad900c7845 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Dec 6 18:38:29 2022 +0100 Camel-InfluxDb2: Fixed Endpoint syntax annotation Signed-off-by: Andrea Cosentino <[email protected]> --- .../java/org/apache/camel/component/influxdb2/InfluxDb2Endpoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-influxdb2/src/main/java/org/apache/camel/component/influxdb2/InfluxDb2Endpoint.java b/components/camel-influxdb2/src/main/java/org/apache/camel/component/influxdb2/InfluxDb2Endpoint.java index 70de2f6e6b6..f028c5625d9 100644 --- a/components/camel-influxdb2/src/main/java/org/apache/camel/component/influxdb2/InfluxDb2Endpoint.java +++ b/components/camel-influxdb2/src/main/java/org/apache/camel/component/influxdb2/InfluxDb2Endpoint.java @@ -43,7 +43,7 @@ import org.slf4j.LoggerFactory; * database. */ @UriEndpoint(firstVersion = "3.20.0", scheme = "influxdb2", title = "InfluxDB2", - syntax = "influxdb2:connectionBean?org=<org name>&bucket=<bucket name>", category = { Category.DATABASE }, + syntax = "influxdb2:connectionBean", category = { Category.DATABASE }, producerOnly = true, headersClass = InfluxDb2Constants.class) public class InfluxDb2Endpoint extends DefaultEndpoint { private static final Logger LOG = LoggerFactory.getLogger(InfluxDb2Endpoint.class);
