Skip to content

Commit 1704679

Browse files
committed
update the format of the GQLSTATUS codes
1 parent eb8975a commit 1704679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ROOT/pages/database-internals/concurrent-data-access.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ Since locks are used, deadlocks can happen.
295295
A deadlock occurs when two transactions are blocked by each other because they are attempting to concurrently modify a node or a relationship that is locked by the other transaction.
296296
In such a scenario, neither of the transactions will be able to proceed.
297297
When Neo4j detects a deadlock, the transaction is terminated with the transient error message code `Neo.TransientError.Transaction.DeadlockDetected`.
298-
From 5.25 onwards, the error message also contains the GQLSTATUS code `50N05` and the status description `error: general processing exception - deadlock detected. Deadlock detected while trying to acquire locks. See log for more details.` along with the Neo4j exception.
298+
From 5.25 onwards, the error message also contains the GQLSTATUS code `50N05` and the status description `error: general processing exception - deadlock detected. Deadlock detected while trying to acquire locks. See log for more details.`
299299

300300
All locks acquired by the transaction are still held but will be released when the transaction finishes.
301301
Once the locks are released, other transactions that were waiting for locks held by the transaction causing the deadlock can proceed.

0 commit comments

Comments
 (0)