Skip to content
Snippets Groups Projects
Commit dea5d4b0 authored by Mark Haines's avatar Mark Haines
Browse files

Don't yield on sending the event accross federation.

parent dec5b623
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ class FederationHandler(BaseHandler):
yield run_on_reactor()
yield self.replication_layer.send_pdu(event, destinations)
self.replication_layer.send_pdu(event, destinations)
@log_function
@defer.inlineCallbacks
......@@ -527,7 +527,7 @@ class FederationHandler(BaseHandler):
event.signatures,
)
yield self.replication_layer.send_pdu(new_pdu, destinations)
self.replication_layer.send_pdu(new_pdu, destinations)
state_ids = [e.event_id for e in context.current_state.values()]
auth_chain = yield self.store.get_auth_chain(set(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment