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 40e85e5020f2333861b82911baa7afc8085cb493 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Dec 6 18:39:28 2022 +0100 Camel-InfluxDb2: Fixed Endpoint syntax annotation Signed-off-by: Andrea Cosentino <[email protected]> --- .../apache/camel/component/influxdb2/InfluxDb2EndpointUriFactory.java | 2 +- .../resources/org/apache/camel/component/influxdb2/influxdb2.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-influxdb2/src/generated/java/org/apache/camel/component/influxdb2/InfluxDb2EndpointUriFactory.java b/components/camel-influxdb2/src/generated/java/org/apache/camel/component/influxdb2/InfluxDb2EndpointUriFactory.java index 277054a5a91..4d28256e85e 100644 --- a/components/camel-influxdb2/src/generated/java/org/apache/camel/component/influxdb2/InfluxDb2EndpointUriFactory.java +++ b/components/camel-influxdb2/src/generated/java/org/apache/camel/component/influxdb2/InfluxDb2EndpointUriFactory.java @@ -15,7 +15,7 @@ import org.apache.camel.spi.EndpointUriFactory; */ public class InfluxDb2EndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory { - private static final String BASE = ":connectionBean?org=<org name>&bucket=<bucket name>"; + private static final String BASE = ":connectionBean"; private static final Set<String> PROPERTY_NAMES; private static final Set<String> SECRET_PROPERTY_NAMES; diff --git a/components/camel-influxdb2/src/generated/resources/org/apache/camel/component/influxdb2/influxdb2.json b/components/camel-influxdb2/src/generated/resources/org/apache/camel/component/influxdb2/influxdb2.json index b4fa942631a..5307cf369a0 100644 --- a/components/camel-influxdb2/src/generated/resources/org/apache/camel/component/influxdb2/influxdb2.json +++ b/components/camel-influxdb2/src/generated/resources/org/apache/camel/component/influxdb2/influxdb2.json @@ -14,7 +14,7 @@ "version": "3.20.0-SNAPSHOT", "scheme": "influxdb2", "extendsScheme": "", - "syntax": "influxdb2:connectionBean?org=<org name>&bucket=<bucket name>", + "syntax": "influxdb2:connectionBean", "async": false, "api": false, "consumerOnly": false,
