diff options
author | Erik Johnston <erik@matrix.org> | 2019-12-11 14:14:30 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-12-11 14:14:30 +0000 |
commit | adb3a873fdb2b9eb6b41a95c193d97ae0983a72b (patch) | |
tree | 7d02b56988a02fc3f961d9367081ffbd6c1284cd /synapse/app | |
parent | Prevent redacted events from appearing in message search (#6377) (diff) | |
parent | 1.7.0rc2 (diff) | |
download | synapse-adb3a873fdb2b9eb6b41a95c193d97ae0983a72b.tar.xz |
Merge tag 'v1.7.0rc2' into develop
Synapse 1.7.0rc2 (2019-12-11) ============================= Bugfixes -------- - Fix incorrect error message for invalid requests when setting user's avatar URL. ([\#6497](https://github.com/matrix-org/synapse/issues/6497)) - Fix support for SQLite 3.7. ([\#6499](https://github.com/matrix-org/synapse/issues/6499)) - Fix regression where sending email push would not work when using a pusher worker. ([\#6507](https://github.com/matrix-org/synapse/issues/6507), [\#6509](https://github.com/matrix-org/synapse/issues/6509))
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/pusher.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py index 01a5ffc363..dd52a9fc2d 100644 --- a/synapse/app/pusher.py +++ b/synapse/app/pusher.py @@ -33,6 +33,7 @@ from synapse.replication.slave.storage.account_data import SlavedAccountDataStor from synapse.replication.slave.storage.events import SlavedEventStore from synapse.replication.slave.storage.pushers import SlavedPusherStore from synapse.replication.slave.storage.receipts import SlavedReceiptsStore +from synapse.replication.slave.storage.room import RoomStore from synapse.replication.tcp.client import ReplicationClientHandler from synapse.server import HomeServer from synapse.storage import DataStore @@ -45,7 +46,11 @@ logger = logging.getLogger("synapse.app.pusher") class PusherSlaveStore( - SlavedEventStore, SlavedPusherStore, SlavedReceiptsStore, SlavedAccountDataStore + SlavedEventStore, + SlavedPusherStore, + SlavedReceiptsStore, + SlavedAccountDataStore, + RoomStore, ): update_pusher_last_stream_ordering_and_success = __func__( DataStore.update_pusher_last_stream_ordering_and_success |