mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-02-25 04:39:47 -05:00
Fix bug with getting missing auth event during join 500'ed (#6810)
This commit is contained in:
parent
46a446828d
commit
7d846e8704
1
changelog.d/6810.misc
Normal file
1
changelog.d/6810.misc
Normal file
@ -0,0 +1 @@
|
||||
Record room versions in the `rooms` table.
|
@ -1929,7 +1929,11 @@ class FederationHandler(BaseHandler):
|
||||
|
||||
for e_id in missing_auth_events:
|
||||
m_ev = yield self.federation_client.get_pdu(
|
||||
[origin], e_id, room_version=room_version, outlier=True, timeout=10000
|
||||
[origin],
|
||||
e_id,
|
||||
room_version=room_version.identifier,
|
||||
outlier=True,
|
||||
timeout=10000,
|
||||
)
|
||||
if m_ev and m_ev.event_id == e_id:
|
||||
event_map[e_id] = m_ev
|
||||
|
Loading…
x
Reference in New Issue
Block a user