Commit 14451371 authored by Jérome Perrin's avatar Jérome Perrin

dump fix

parent b20dd0ed
...@@ -76,7 +76,7 @@ def zodbcommit(stor, at, txn): ...@@ -76,7 +76,7 @@ def zodbcommit(stor, at, txn):
# supporting .restore, it can still support .tpc_begin(tid=...). An example # supporting .restore, it can still support .tpc_begin(tid=...). An example
# of this is NEO. We anyway need to be able to specify which transaction ID # of this is NEO. We anyway need to be able to specify which transaction ID
# we need to restore transaction with. # we need to restore transaction with.
stor.tpc_begin(txn, tid=txn.tid) stor.tpc_begin(txn, tid=txn.tid, status=txn.status)
runctx = "%s: restore %s @%s" % (stor.getName(), ashex(txn.tid), ashex(at)) runctx = "%s: restore %s @%s" % (stor.getName(), ashex(txn.tid), ashex(at))
else: else:
stor.tpc_begin(txn) stor.tpc_begin(txn)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment