mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 16:39:24 -05:00
PriorityQueue gives lowest first
This commit is contained in:
parent
115ef3ddac
commit
6189d8e54d
@ -395,7 +395,7 @@ class EventFederationStore(SQLBaseStore):
|
||||
)
|
||||
|
||||
for row in txn.fetchall():
|
||||
queue.put(row)
|
||||
queue.put((-row[0], row[1]))
|
||||
|
||||
while not queue.empty() and len(event_results) < limit:
|
||||
try:
|
||||
@ -411,7 +411,7 @@ class EventFederationStore(SQLBaseStore):
|
||||
)
|
||||
|
||||
for row in txn.fetchall():
|
||||
queue.put(row)
|
||||
queue.put((-row[0], row[1]))
|
||||
|
||||
return event_results
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user