You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""This function is a decorator for transaction functions that allows extra control over how the transaction is carried out.
53
+
"""Decorator giving extra control over transaction function configuration.
54
+
55
+
This function is a decorator for transaction functions that allows extra
56
+
control over how the transaction is carried out.
54
57
55
58
For example, a timeout may be applied::
56
59
@@ -64,15 +67,24 @@ def count_people_tx(tx):
64
67
65
68
:param metadata:
66
69
a dictionary with metadata.
67
-
Specified metadata will be attached to the executing transaction and visible in the output of ``dbms.listQueries`` and ``dbms.listTransactions`` procedures.
70
+
Specified metadata will be attached to the executing transaction and
71
+
visible in the output of ``dbms.listQueries`` and
72
+
``dbms.listTransactions`` procedures.
68
73
It will also get logged to the ``query.log``.
69
-
This functionality makes it easier to tag transactions and is equivalent to ``dbms.setTXMetaData`` procedure, see https://neo4j.com/docs/operations-manual/current/reference/procedures/ for procedure reference.
74
+
This functionality makes it easier to tag transactions and is
75
+
equivalent to ``dbms.setTXMetaData`` procedure, see
0 commit comments