From a9bc3484465addac2d98b64ad426140ad7609abf Mon Sep 17 00:00:00 2001 From: yangdx Date: Sat, 25 Oct 2025 11:48:14 +0800 Subject: [PATCH] Remove enable_logging parameter from data init lock call --- lightrag/lightrag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/lightrag.py b/lightrag/lightrag.py index cc1dfcd7..7af96237 100644 --- a/lightrag/lightrag.py +++ b/lightrag/lightrag.py @@ -710,7 +710,7 @@ class LightRAG: async def check_and_migrate_data(self): """Check if data migration is needed and perform migration if necessary""" - async with get_data_init_lock(enable_logging=True): + async with get_data_init_lock(): try: # Check if migration is needed: # 1. chunk_entity_relation_graph has entities and relations (count > 0)