Merge pull request #2060 from danielaskdd/fix-worksapce-dir

Fix incorrect variable name in NetworkXStorage file path
This commit is contained in:
Daniel.y 2025-09-04 18:36:48 +08:00 committed by GitHub
commit ae65676b4e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,7 +51,7 @@ class NetworkXStorage(BaseGraphStorage):
os.makedirs(workspace_dir, exist_ok=True)
self._graphml_xml_file = os.path.join(
working_dir, f"graph_{self.namespace}.graphml"
workspace_dir, f"graph_{self.namespace}.graphml"
)
self._storage_lock = None
self.storage_updated = None