diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-15 16:30:10 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-02-28 18:02:30 +0000 |
commit | 28e973ac119e0b4ec5b9e45772a572a94d0e6643 (patch) | |
tree | 7f6bba0063c8676cd8333aee85765c0081dbbff4 /synapse/replication | |
parent | Move storage functions for push calculations (diff) | |
download | synapse-28e973ac119e0b4ec5b9e45772a572a94d0e6643.tar.xz |
Calculate push actions on worker
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/http/send_event.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/send_event.py b/synapse/replication/http/send_event.py index 468f4b68f4..3a99a88bc5 100644 --- a/synapse/replication/http/send_event.py +++ b/synapse/replication/http/send_event.py @@ -106,7 +106,7 @@ class ReplicationSendEventRestServlet(RestServlet): event.event_id, event.room_id, ) - yield self.event_creation_handler.handle_new_client_event( + yield self.event_creation_handler.persist_and_notify_client_event( requester, event, context, ) |