This repository was archived by the owner on Apr 26, 2024. It is now read-only.
File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ Faster joins: do not wait for full state when creating events to send.
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ async def build(
128
128
state_filter = StateFilter .from_types (
129
129
auth_types_for_event (self .room_version , self )
130
130
),
131
+ await_full_state = False ,
131
132
)
132
133
auth_event_ids = self ._event_auth_handler .compute_auth_events (
133
134
self , state_ids
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ async def compute_state_after_events(
190
190
room_id : str ,
191
191
event_ids : Collection [str ],
192
192
state_filter : Optional [StateFilter ] = None ,
193
+ await_full_state : bool = True ,
193
194
) -> StateMap [str ]:
194
195
"""Fetch the state after each of the given event IDs. Resolve them and return.
195
196
@@ -206,7 +207,9 @@ async def compute_state_after_events(
206
207
holds the resolution of the states after the given event IDs.
207
208
"""
208
209
logger .debug ("calling resolve_state_groups from compute_state_after_events" )
209
- ret = await self .resolve_state_groups_for_events (room_id , event_ids )
210
+ ret = await self .resolve_state_groups_for_events (
211
+ room_id , event_ids , await_full_state
212
+ )
210
213
return await ret .get_state (self ._state_storage_controller , state_filter )
211
214
212
215
async def get_current_user_ids_in_room (
You can’t perform that action at this time.
0 commit comments