mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:06:08 -04:00
Correctly prepopulate queue
This commit is contained in:
parent
dc085ddf8c
commit
ae3bff3491
1 changed files with 10 additions and 2 deletions
|
@ -394,8 +394,16 @@ class EventFederationStore(SQLBaseStore):
|
|||
(room_id, event_id, limit - len(event_results))
|
||||
)
|
||||
|
||||
for row in txn.fetchall():
|
||||
queue.put((-row[0], row[1]))
|
||||
depth = self._simple_select_one_onecol_txn(
|
||||
txn,
|
||||
table="events",
|
||||
keyvalues={
|
||||
"event_id": event_id,
|
||||
},
|
||||
retcol="depth"
|
||||
)
|
||||
|
||||
queue.put((-depth, event_id))
|
||||
|
||||
while not queue.empty() and len(event_results) < limit:
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue