diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-11-14 11:43:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-14 11:43:12 +0000 |
commit | 6caa379ba18ff4cb6d14a8b9c4cd6b76a618c768 (patch) | |
tree | 060360abe1d868d0802e7718e8799a6925ea6440 /synapse/replication/slave/storage/_base.py | |
parent | Merge pull request #2668 from turt2live/travis/whoami (diff) | |
parent | Fix tests for Store.__init__ update (diff) | |
download | synapse-6caa379ba18ff4cb6d14a8b9c4cd6b76a618c768.tar.xz |
Merge pull request #2658 from matrix-org/rav/store_heirarchy_init
Make __init__ consistent across Store hierarchy
Diffstat (limited to 'synapse/replication/slave/storage/_base.py')
-rw-r--r-- | synapse/replication/slave/storage/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/_base.py b/synapse/replication/slave/storage/_base.py index b962641166..61f5590c53 100644 --- a/synapse/replication/slave/storage/_base.py +++ b/synapse/replication/slave/storage/_base.py @@ -25,7 +25,7 @@ logger = logging.getLogger(__name__) class BaseSlavedStore(SQLBaseStore): def __init__(self, db_conn, hs): - super(BaseSlavedStore, self).__init__(hs) + super(BaseSlavedStore, self).__init__(db_conn, hs) if isinstance(self.database_engine, PostgresEngine): self._cache_id_gen = SlavedIdTracker( db_conn, "cache_invalidation_stream", "stream_id", |