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
The following commit(s) were added to refs/heads/main by this push: new 4c628c93e07 Camel-Pinecone: Fixed import and type of the Pinecone client (#14122) 4c628c93e07 is described below commit 4c628c93e073e84b4ebb064ddc792cedcf5f8dfe Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon May 13 12:11:20 2024 +0200 Camel-Pinecone: Fixed import and type of the Pinecone client (#14122) Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd | 2 +- .../apache/camel/component/pinecone/PineconeVectorDbConfiguration.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd index 31c2ec35868..a78a141b832 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd @@ -1199,7 +1199,7 @@ Properties to use with properties placeholder <xs:annotation> <xs:documentation xml:lang="en"> <![CDATA[ -A key value pair where the value is a literal value +Bean property ]]> </xs:documentation> </xs:annotation> diff --git a/components/camel-pinecone/src/main/java/org/apache/camel/component/pinecone/PineconeVectorDbConfiguration.java b/components/camel-pinecone/src/main/java/org/apache/camel/component/pinecone/PineconeVectorDbConfiguration.java index 0e960ee214a..b95e6fd9604 100644 --- a/components/camel-pinecone/src/main/java/org/apache/camel/component/pinecone/PineconeVectorDbConfiguration.java +++ b/components/camel-pinecone/src/main/java/org/apache/camel/component/pinecone/PineconeVectorDbConfiguration.java @@ -32,7 +32,7 @@ public class PineconeVectorDbConfiguration implements Cloneable { private String token; @Metadata(autowired = true) - private io.pinecone.clients.Pinecone client; + private Pinecone client; public String getToken() { return token;