[Bug] AttributeError
in Pinecone VectorStore Delete Function on Google Cloud Run Environment
#408
Open
2 tasks done
Labels
bug
Something isn't working
status:needs-triage
An issue that needs to be triaged by the Pinecone team
Is this a new bug?
In other words: Is this an error, flaw, failure or fault? Please search Github issues and check our Community Forum to see if someone has already reported the bug you encountered.
If this is a request for help or troubleshooting code in your own Pinecone project, please join the Pinecone Community Forum.
Describe the bug
The
delete
function in the Pinecone Vector Store raises anAttributeError
when running on Google Cloud Run. The error occurs inside thetenacity
retry mechanism due toself.index.list()
unexpectedly returning astr
instead of the expected response format containing thevectors
attribute. This error only appears in production on Google Cloud Run, while the same operation works successfully locally on a Fedora Linux environment.Error information
Steps to reproduce the issue locally
delete
function.AttributeError
due to the unexpectedstr
response fromself.index.list()
.Environment
Additional context
This issue may also affect other vector store functions that rely on
self.index.list()
.The text was updated successfully, but these errors were encountered: