diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-08 18:34:18 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-08 18:34:18 +0100 |
commit | c0577ea87a19c169d68ed83760582fa1fabe36e5 (patch) | |
tree | 0f4add68e13156b3700ac8f54c389c32277cfc14 /synapse | |
parent | Added /join description (diff) | |
download | synapse-c0577ea87a19c169d68ed83760582fa1fabe36e5.tar.xz |
Rollback if we try and insert duplicate events
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 81c3c94b2e..8ed80109a5 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -179,6 +179,7 @@ class DataStore(RoomMemberStore, RoomStore, "Failed to persist, probably duplicate: %s", event.event_id ) + txn.rollback() return if not backfilled and hasattr(event, "state_key"): |