1
0

Cast a coroutine into a Deferred in the federation base (#6996)

* commit '380122866':
  Cast a coroutine into a Deferred in the federation base (#6996)
This commit is contained in:
Andrew Morgan
2020-03-24 13:25:01 +00:00
2 changed files with 9 additions and 6 deletions

1
changelog.d/6996.bugfix Normal file
View File

@@ -0,0 +1 @@
Fix bug which caused an error when joining a room, with `'coroutine' object has no attribute 'event_id'`.

View File

@@ -96,12 +96,14 @@ class FederationBase(object):
if not res and pdu.origin != origin:
try:
res = yield self.get_pdu(
destinations=[pdu.origin],
event_id=pdu.event_id,
room_version=room_version,
outlier=outlier,
timeout=10000,
res = yield defer.ensureDeferred(
self.get_pdu(
destinations=[pdu.origin],
event_id=pdu.event_id,
room_version=room_version,
outlier=outlier,
timeout=10000,
)
)
except SynapseError:
pass