mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Speed up state res v2 across large state differences. (#7725)
This commit is contained in:
parent
1b1489ff18
commit
91e886d615
1
changelog.d/7725.misc
Normal file
1
changelog.d/7725.misc
Normal file
@ -0,0 +1 @@
|
||||
Speed up state res v2 across large state differences.
|
@ -133,8 +133,9 @@ def resolve_events_with_store(
|
||||
# OK, so we've now resolved the power events. Now sort the remaining
|
||||
# events using the mainline of the resolved power level.
|
||||
|
||||
set_power_events = set(sorted_power_events)
|
||||
leftover_events = [
|
||||
ev_id for ev_id in full_conflicted_set if ev_id not in sorted_power_events
|
||||
ev_id for ev_id in full_conflicted_set if ev_id not in set_power_events
|
||||
]
|
||||
|
||||
logger.debug("sorting %d remaining events", len(leftover_events))
|
||||
|
Loading…
Reference in New Issue
Block a user