Skip to content

Commit 54e2dce

Browse files
committed
add missing methods
1 parent a7f0db6 commit 54e2dce

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pinecone/core/grpc/index_grpc.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,12 @@ def result(self, timeout=None):
232232
except _MultiThreadedRendezvous as e:
233233
raise PineconeException(e._state.debug_error_string) from e
234234

235+
def exception(self,timeout=None):
236+
with _MultiThreadedRendezvous as e:
237+
raise PineconeException(e._state.debug_error_string) from e
238+
239+
def traceback(self,timeout=None):
240+
return self._delegate.traceback(timeout=timeout)
235241

236242
class GRPCIndex(GRPCIndexBase):
237243

0 commit comments

Comments
 (0)