diff options
author | Shay <hillerys@element.io> | 2022-09-28 03:11:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 10:11:48 +0000 |
commit | 8ab16a92edd675453c78cfd9974081e374b0f998 (patch) | |
tree | 57cb2dae52dbb6e3e09a18e1fb7e6038afcc4d20 /synapse/handlers/room_batch.py | |
parent | Prepatory work for batching events to send (#13487) (diff) | |
download | synapse-8ab16a92edd675453c78cfd9974081e374b0f998.tar.xz |
Persist CreateRoom events to DB in a batch (#13800)
Diffstat (limited to 'synapse/handlers/room_batch.py')
-rw-r--r-- | synapse/handlers/room_batch.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/room_batch.py b/synapse/handlers/room_batch.py index 1414e575d6..411a6fb22f 100644 --- a/synapse/handlers/room_batch.py +++ b/synapse/handlers/room_batch.py @@ -379,8 +379,7 @@ class RoomBatchHandler: await self.create_requester_for_user_id_from_app_service( event.sender, app_service_requester.app_service ), - event=event, - context=context, + events_and_context=[(event, context)], ) return event_ids |