summary refs log tree commit diff
path: root/synapse/streams
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-03-03 14:57:45 +0000
committerMark Haines <mark.haines@matrix.org>2016-03-03 14:57:45 +0000
commitddf9e7b3027eee61086ebfb447c5fa33e9b640fe (patch)
tree01b3fee90b76b2b028bf2d8e904f24210cd4d39f /synapse/streams
parentHook push rules up to the replication API (diff)
downloadsynapse-ddf9e7b3027eee61086ebfb447c5fa33e9b640fe.tar.xz
Hook up the push rules to the notifier
Diffstat (limited to 'synapse/streams')
-rw-r--r--synapse/streams/events.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/streams/events.py b/synapse/streams/events.py
index 5ddf4e988b..d4c0bb6732 100644
--- a/synapse/streams/events.py
+++ b/synapse/streams/events.py
@@ -38,9 +38,12 @@ class EventSources(object):
             name: cls(hs)
             for name, cls in EventSources.SOURCE_TYPES.items()
         }
+        self.store = hs.get_datastore()
 
     @defer.inlineCallbacks
     def get_current_token(self, direction='f'):
+        push_rules_key, _ = self.store.get_push_rules_stream_token()
+
         token = StreamToken(
             room_key=(
                 yield self.sources["room"].get_current_key(direction)
@@ -57,5 +60,6 @@ class EventSources(object):
             account_data_key=(
                 yield self.sources["account_data"].get_current_key()
             ),
+            push_rules_key=push_rules_key,
         )
         defer.returnValue(token)