summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-08-15 11:45:57 +0100
committerErik Johnston <erik@matrix.org>2016-08-15 11:45:57 +0100
commitd9664344ecf481a73b2189f5bc65f4f784222969 (patch)
tree561371e33f98b5ef8b4c2e12bd504ebc4ad1857a /synapse/replication
parentRemove broken cache stuff (diff)
downloadsynapse-d9664344ecf481a73b2189f5bc65f4f784222969.tar.xz
Rename table. Add docs.
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/slave/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/_base.py b/synapse/replication/slave/storage/_base.py

index 24c9946d6a..d839d169ab 100644 --- a/synapse/replication/slave/storage/_base.py +++ b/synapse/replication/slave/storage/_base.py
@@ -29,7 +29,7 @@ class BaseSlavedStore(SQLBaseStore): super(BaseSlavedStore, self).__init__(hs) if isinstance(self.database_engine, PostgresEngine): self._cache_id_gen = SlavedIdTracker( - db_conn, "cache_stream", "stream_id", + db_conn, "cache_invalidation_stream", "stream_id", ) else: self._cache_id_gen = None