From 458c93d0665ea403793d19dc33329da700515351 Mon Sep 17 00:00:00 2001 From: Sherif Abdekarim <sherif.abdelkarim91@gmail.com> Date: Thu, 16 May 2024 07:29:26 -0700 Subject: [PATCH] Update base.py (#13525) Fixes a typo in the variable name from seesion_pool_config to session_pool_config --- .../llama_index/graph_stores/nebula/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama-index-integrations/graph_stores/llama-index-graph-stores-nebula/llama_index/graph_stores/nebula/base.py b/llama-index-integrations/graph_stores/llama-index-graph-stores-nebula/llama_index/graph_stores/nebula/base.py index f6300e028e..91ceb19f38 100644 --- a/llama-index-integrations/graph_stores/llama-index-graph-stores-nebula/llama_index/graph_stores/nebula/base.py +++ b/llama-index-integrations/graph_stores/llama-index-graph-stores-nebula/llama_index/graph_stores/nebula/base.py @@ -224,8 +224,8 @@ class NebulaGraphStore(GraphStore): [(graphd_host, int(graphd_port))], ) - seesion_pool_config = SessionPoolConfig() - session_pool.init(seesion_pool_config) + session_pool_config = SessionPoolConfig() + session_pool.init(session_pool_config) self._session_pool = session_pool return self._session_pool -- GitLab