From a8bd6926edc4ba70a07ee1f23f2a93a0166b3de3 Mon Sep 17 00:00:00 2001 From: Austin DeNoble Date: Fri, 25 Oct 2024 00:48:18 -0400 Subject: [PATCH] access self._config rather than self.config in Index --- pinecone/data/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinecone/data/index.py b/pinecone/data/index.py index e542b962..1a011b81 100644 --- a/pinecone/data/index.py +++ b/pinecone/data/index.py @@ -120,7 +120,7 @@ def _load_plugins(self): # try block just in case to make sure a bad plugin doesn't # halt client initialization. openapi_client_builder = build_plugin_setup_client( - config=self.config, + config=self._config, openapi_config=self.openapi_config, pool_threads=self.pool_threads, )