summary refs log tree commit diff
path: root/synapse/app/pusher.py
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-04-21 16:25:19 +0100
committerMark Haines <mjark@negativecurvature.net>2016-04-21 16:28:05 +0100
commit3a676b8ee300613f87f0d17f96b05fceee861ac1 (patch)
tree90562e02150f1f1156987d4dfbab5a4d444427ef /synapse/app/pusher.py
parentMerge branch 'markjh/slave_event_push_actions' into markjh/split_pusher (diff)
downloadsynapse-github/markjh/split_pusher.tar.xz
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r--synapse/app/pusher.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py

index fbed9763c0..27f878e429 100644 --- a/synapse/app/pusher.py +++ b/synapse/app/pusher.py
@@ -23,7 +23,6 @@ from synapse.config.database import DatabaseConfig from synapse.config.logger import LoggingConfig from synapse.replication.slave.storage.events import SlavedEventStore from synapse.replication.slave.storage.pushers import SlavedPusherStore -from synapse.replication.slave.storage.event_push_actions import SlavedPushActionsStore from synapse.replication.slave.storage.receipts import SlavedReceiptsStore from synapse.storage.engines import create_engine from synapse.storage import DataStore @@ -60,9 +59,7 @@ class PusherSlaveConfig(SlaveConfig, LoggingConfig): class PusherSlaveStore( - SlavedPushActionsStore, - SlavedEventStore, SlavedPusherStore, - SlavedReceiptsStore + SlavedEventStore, SlavedPusherStore, SlavedReceiptsStore ): update_pusher_last_stream_ordering_and_success = ( DataStore.update_pusher_last_stream_ordering_and_success.__func__