mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-25 11:05:49 +03:00
Actually use async method
This commit is contained in:
parent
4071f29653
commit
968b01a91a
1 changed files with 1 additions and 3 deletions
|
@ -873,9 +873,7 @@ class SQLBaseStore(object):
|
||||||
N = 50 # Only fetch 100 events at a time.
|
N = 50 # Only fetch 100 events at a time.
|
||||||
|
|
||||||
ds = [
|
ds = [
|
||||||
self.runInteraction(
|
self._fetch_events(
|
||||||
desc,
|
|
||||||
self._fetch_events_txn,
|
|
||||||
event_ids[i*N:(i+1)*N],
|
event_ids[i*N:(i+1)*N],
|
||||||
check_redacted=check_redacted,
|
check_redacted=check_redacted,
|
||||||
get_prev_content=get_prev_content,
|
get_prev_content=get_prev_content,
|
||||||
|
|
Loading…
Reference in a new issue