I am developing a webapp using the library py2neo.
I also pushed it on Heroku, where it is connected with a Graphene DB, while locally it is connected with a Neo4j database.
As I was using my webapp on Heroku, I got this error:
ValueError: ('Transaction %r is not open on this connection', <py2neo.client.http.HTTPTransaction object at 0x7fe3fe8f9e80>)
Since I still have debug=True
, I can see that the error happened when the webapp tryed to merge a relationship
rel = Relationship(...
graph.merge(rel)
This error happed once, and then did not occurr anymore.
However, what does the error mean?
I cant't understand the documentation for this error:
def _assert_transaction_open(self, tx):
if tx is not self._transaction:
raise ValueError("Transaction %r is not open on this connection", tx)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…