0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-06 03:08:58 +02:00

Don't make temporary list

This commit is contained in:
Erik Johnston 2018-10-29 14:01:49 +00:00
parent b2399f6281
commit f4f223aa44

View file

@ -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 = """