mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:16:09 -04:00
Make store.get_current_state fetch events asyncly
This commit is contained in:
parent
d62dee7eae
commit
acb12cc811
2 changed files with 4 additions and 4 deletions
|
@ -159,11 +159,12 @@ class StateStore(SQLBaseStore):
|
|||
args = (room_id, )
|
||||
|
||||
txn.execute(sql, args)
|
||||
results = self.cursor_to_dict(txn)
|
||||
results = txn.fetchall()
|
||||
|
||||
return self._parse_events_txn(txn, results)
|
||||
return [r[0] for r in results]
|
||||
|
||||
events = yield self.runInteraction("get_current_state", f)
|
||||
event_ids = yield self.runInteraction("get_current_state", f)
|
||||
events = yield self._get_events(event_ids)
|
||||
defer.returnValue(events)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue