Commit 20cc2f45 authored by Chris McDonough's avatar Chris McDonough

Fix overeager exception handler.

parent 658f2a08
...@@ -250,6 +250,8 @@ class TransientObject(Persistent, Implicit): ...@@ -250,6 +250,8 @@ class TransientObject(Persistent, Implicit):
states.sort(lastaccessed_sort) states.sort(lastaccessed_sort)
DEBUG and TLOG('TO _p_rc: returning last_accessed state') DEBUG and TLOG('TO _p_rc: returning last_accessed state')
return states[0] return states[0]
except ConflictError:
raise
except: except:
LOG.info('Conflict resolution error in TransientObject', LOG.info('Conflict resolution error in TransientObject',
exc_info=sys.exc_info()) exc_info=sys.exc_info())
......
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