0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-08 10:55:31 +02:00

Don't be too enthusiatic with defer.gatherResults

This commit is contained in:
Erik Johnston 2015-08-07 18:13:48 +01:00
parent b2c7bd4b09
commit ffdb8c3828

View file

@ -405,8 +405,12 @@ class MessageHandler(BaseHandler):
except:
logger.exception("Failed to get snapshot")
# Only do N rooms at once
n = 5
d_list = [handle_room(e) for e in room_list]
for ds in [d_list[i:i + n] for i in range(0, len(d_list), n)]:
yield defer.gatherResults(
[handle_room(e) for e in room_list],
ds,
consumeErrors=True
).addErrback(unwrapFirstError)