Merge branch 'fix-neo4j-duplicate-nodes' into improve-property-tooltip
Browse files- lightrag/kg/neo4j_impl.py +0 -12
lightrag/kg/neo4j_impl.py
CHANGED
@@ -553,18 +553,6 @@ class Neo4JStorage(BaseGraphStorage):
|
|
553 |
logger.error(f"Error during upsert: {str(e)}")
|
554 |
raise
|
555 |
|
556 |
-
@retry(
|
557 |
-
stop=stop_after_attempt(3),
|
558 |
-
wait=wait_exponential(multiplier=1, min=4, max=10),
|
559 |
-
retry=retry_if_exception_type(
|
560 |
-
(
|
561 |
-
neo4jExceptions.ServiceUnavailable,
|
562 |
-
neo4jExceptions.TransientError,
|
563 |
-
neo4jExceptions.WriteServiceUnavailable,
|
564 |
-
neo4jExceptions.ClientError,
|
565 |
-
)
|
566 |
-
),
|
567 |
-
)
|
568 |
@retry(
|
569 |
stop=stop_after_attempt(3),
|
570 |
wait=wait_exponential(multiplier=1, min=4, max=10),
|
|
|
553 |
logger.error(f"Error during upsert: {str(e)}")
|
554 |
raise
|
555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
@retry(
|
557 |
stop=stop_after_attempt(3),
|
558 |
wait=wait_exponential(multiplier=1, min=4, max=10),
|