diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-03-04 16:20:22 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-03-04 16:20:22 +0000 |
commit | 9848b54cac2c7e077317eec85ee0de2cb567c561 (patch) | |
tree | 013fd22bd97253c146a85be0e2742f603308bcdf /synapse/storage | |
parent | prefill the push rules stream change cache (diff) | |
download | synapse-9848b54cac2c7e077317eec85ee0de2cb567c561.tar.xz |
Prefill from the correct stream
Diffstat (limited to 'synapse/storage')
-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 ab2f115adf..6f37a85d09 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -161,7 +161,7 @@ class DataStore(RoomMemberStore, RoomStore, ) push_rules_prefill, push_rules_id = self._get_cache_dict( - db_conn, "presence_stream", + db_conn, "push_rules_stream", entity_column="user_id", stream_column="stream_id", max_value=self._push_rules_stream_id_gen.get_max_token()[0], |