summary refs log tree commit diff
path: root/synapse/storage/__init__.py
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/storage/__init__.py
parentRemove broken cache stuff (diff)
downloadsynapse-d9664344ecf481a73b2189f5bc65f4f784222969.tar.xz
Rename table. Add docs.
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index 8af492b69f..7efc5bfeef 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -126,7 +126,7 @@ class DataStore(RoomMemberStore, RoomStore,
 
         if isinstance(self.database_engine, PostgresEngine):
             self._cache_id_gen = StreamIdGenerator(
-                db_conn, "cache_stream", "stream_id",
+                db_conn, "cache_invalidation_stream", "stream_id",
             )
         else:
             self._cache_id_gen = None