diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-15 11:45:57 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-15 11:45:57 +0100 |
commit | d9664344ecf481a73b2189f5bc65f4f784222969 (patch) | |
tree | 561371e33f98b5ef8b4c2e12bd504ebc4ad1857a /synapse/storage/__init__.py | |
parent | Remove broken cache stuff (diff) | |
download | synapse-d9664344ecf481a73b2189f5bc65f4f784222969.tar.xz |
Rename table. Add docs.
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
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 |