Commit 3dc04ecf authored by Vincent Pelletier's avatar Vincent Pelletier

Stop reading undo history when reaching a packed transaction.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1944 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 8c18b6dc
......@@ -885,6 +885,9 @@ class Application(object):
'transaction info for TID %r could not ' \
'be found' % (tid, )
if self.local_var.txn_info['packed']:
break
if filter is None or filter(self.local_var.txn_info):
if not with_oids:
self.local_var.txn_info.pop("oids")
......
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