mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Don't make temporary list
This commit is contained in:
parent
b2399f6281
commit
f4f223aa44
@ -1266,9 +1266,8 @@ class StateGroupWorkerStore(EventsWorkerStore, SQLBaseStore):
|
||||
current_search = next_to_search
|
||||
next_to_search = set()
|
||||
else:
|
||||
lst = list(next_to_search)
|
||||
current_search = set(lst[:100])
|
||||
next_to_search = set(lst[100:])
|
||||
current_search = set(islice(next_to_search, 100))
|
||||
next_to_search -= current_search
|
||||
|
||||
# Check if state groups are referenced
|
||||
sql = """
|
||||
|
Loading…
Reference in New Issue
Block a user