summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-08-11 19:40:02 +0100
committerGitHub <noreply@github.com>2020-08-11 19:40:02 +0100
commita1e9bb9eae7f90e93e0ba02e84e8216e3c2f447a (patch)
treeed117429c68d8ebc4e1f70461ea1450b174cad34 /synapse/handlers
parentReduce INFO logging (#8050) (diff)
downloadsynapse-a1e9bb9eae7f90e93e0ba02e84e8216e3c2f447a.tar.xz
Add typing info to Notifier (#8058)
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/events.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/handlers/events.py b/synapse/handlers/events.py
index 71a89f09c7..1924636c4d 100644
--- a/synapse/handlers/events.py
+++ b/synapse/handlers/events.py
@@ -57,13 +57,10 @@ class EventStreamHandler(BaseHandler):
         timeout=0,
         as_client_event=True,
         affect_presence=True,
-        only_keys=None,
         room_id=None,
         is_guest=False,
     ):
         """Fetches the events stream for a given user.
-
-        If `only_keys` is not None, events from keys will be sent down.
         """
 
         if room_id:
@@ -93,7 +90,6 @@ class EventStreamHandler(BaseHandler):
                 auth_user,
                 pagin_config,
                 timeout,
-                only_keys=only_keys,
                 is_guest=is_guest,
                 explicit_room_id=room_id,
             )