diff --git a/lightrag/kg/neo4j_impl.py b/lightrag/kg/neo4j_impl.py index d2d3459e..a9d93168 100644 --- a/lightrag/kg/neo4j_impl.py +++ b/lightrag/kg/neo4j_impl.py @@ -553,18 +553,6 @@ class Neo4JStorage(BaseGraphStorage): logger.error(f"Error during upsert: {str(e)}") raise - @retry( - stop=stop_after_attempt(3), - wait=wait_exponential(multiplier=1, min=4, max=10), - retry=retry_if_exception_type( - ( - neo4jExceptions.ServiceUnavailable, - neo4jExceptions.TransientError, - neo4jExceptions.WriteServiceUnavailable, - neo4jExceptions.ClientError, - ) - ), - ) @retry( stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=4, max=10),