I am writing a thin client (simpleneo4js) for executing cypher statements
in node.js. I want to enable queries to be re-run in a deadlock scenario.
In order to detect a deadlock I am doing this with the returned error:

var deadlock =  (error.code ==
"Neo.DatabaseError.Statement.ExecutionFailure") &&
(error.message.indexOf("deadlock") != -1);

Is there a better way to do this?

There does not seem to be a specific error code returned when there is a
deadlock. Should there be?

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to