This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch pinecone-fix in repository https://gitbox.apache.org/repos/asf/camel.git
commit 4795af9c3718d1d63a209184e6221b8c15027c7b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon May 13 11:59:55 2024 +0200 Camel-Pinecone: Fixed import and type of the Pinecone client 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;