diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-04 07:21:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 07:21:47 -0400 |
commit | e19de43eb5903c3b6ccca82334971ebc57fc38de (patch) | |
tree | 5925175ac5a8c43303bc5e262fc9bd4f2d6e76f3 /synapse/handlers/search.py | |
parent | re-implement daemonize (#8011) (diff) | |
download | synapse-e19de43eb5903c3b6ccca82334971ebc57fc38de.tar.xz |
Convert streams to async. (#8014)
Diffstat (limited to 'synapse/handlers/search.py')
-rw-r--r-- | synapse/handlers/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/search.py b/synapse/handlers/search.py index 9b312a1558..d58f9788c5 100644 --- a/synapse/handlers/search.py +++ b/synapse/handlers/search.py @@ -340,7 +340,7 @@ class SearchHandler(BaseHandler): # If client has asked for "context" for each event (i.e. some surrounding # events and state), fetch that if event_context is not None: - now_token = await self.hs.get_event_sources().get_current_token() + now_token = self.hs.get_event_sources().get_current_token() contexts = {} for event in allowed_events: |