summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2018-02-23 11:23:35 +0000
committerGitHub <noreply@github.com>2018-02-23 11:23:35 +0000
commit1cf9e071dda4afb31dc3a87e540847a711fd3307 (patch)
treec8c7c00db2cbf572222e7ef10bae9504bb42f2e9 /synapse/storage
parentMerge pull request #2898 from matrix-org/erikj/split_push_rules_store (diff)
parentUpdate copyright (diff)
downloadsynapse-1cf9e071dda4afb31dc3a87e540847a711fd3307.tar.xz
Merge pull request #2899 from matrix-org/erikj/split_pushers
Split PusherStore
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/pusher.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py

index 3d8b4d5d5b..f4af3e4caa 100644 --- a/synapse/storage/pusher.py +++ b/synapse/storage/pusher.py
@@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- # Copyright 2014-2016 OpenMarket Ltd +# Copyright 2018 New Vector Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -27,7 +28,7 @@ import types logger = logging.getLogger(__name__) -class PusherStore(SQLBaseStore): +class PusherWorkerStore(SQLBaseStore): def _decode_pushers_rows(self, rows): for r in rows: dataJson = r['data'] @@ -102,9 +103,6 @@ class PusherStore(SQLBaseStore): rows = yield self.runInteraction("get_all_pushers", get_pushers) defer.returnValue(rows) - def get_pushers_stream_token(self): - return self._pushers_id_gen.get_current_token() - def get_all_updated_pushers(self, last_id, current_id, limit): if last_id == current_id: return defer.succeed(([], [])) @@ -177,6 +175,11 @@ class PusherStore(SQLBaseStore): "get_all_updated_pushers_rows", get_all_updated_pushers_rows_txn ) + +class PusherStore(PusherWorkerStore): + def get_pushers_stream_token(self): + return self._pushers_id_gen.get_current_token() + @cachedInlineCallbacks(num_args=1, max_entries=15000) def get_if_user_has_pusher(self, user_id): # This only exists for the cachedList decorator