Merge pull request #985 from matrix-org/erikj/fix_integrity_retry

Tweak integrity error recovery to work as intended
pull/987/head
Erik Johnston 2016-08-05 10:44:01 +01:00 committed by GitHub
commit 87ef315ad5
2 changed files with 9 additions and 1 deletions

View File

@ -343,7 +343,7 @@ class FederationClient(FederationBase):
defer.returnValue((pdus, auth_chain))
except HttpResponseException as e:
if e.code == 404:
if e.code == 400 or e.code == 404:
logger.info("Failed to use get_room_state_ids API, falling back")
else:
raise e

View File

@ -580,6 +580,7 @@ class EventsStore(SQLBaseStore):
for table in (
"events",
"event_auth",
"event_json",
"event_content_hashes",
"event_destinations",
@ -591,8 +592,15 @@ class EventsStore(SQLBaseStore):
"event_search",
"event_signatures",
"event_to_state_groups",
"guest_access",
"history_visibility",
"local_invites",
"room_names",
"state_events",
"rejections",
"redactions",
"room_memberships",
"state_events"
):
txn.executemany(
"DELETE FROM %s WHERE event_id = ?" % (table,),