mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Ensure we mark sent knocks as outliers (#10873)
This commit is contained in:
parent
6fc8be9a1b
commit
8f2a52766b
1
changelog.d/10873.bugfix
Normal file
1
changelog.d/10873.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix a bug introduced in Synapse 1.37.0 which caused `knock` events which we sent to remote servers to be incorrectly stored in the local database.
|
@ -593,6 +593,13 @@ class FederationHandler(BaseHandler):
|
|||||||
target_hosts, room_id, knockee, Membership.KNOCK, content, params=params
|
target_hosts, room_id, knockee, Membership.KNOCK, content, params=params
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Mark the knock as an outlier as we don't yet have the state at this point in
|
||||||
|
# the DAG.
|
||||||
|
event.internal_metadata.outlier = True
|
||||||
|
|
||||||
|
# ... but tell /sync to send it to clients anyway.
|
||||||
|
event.internal_metadata.out_of_band_membership = True
|
||||||
|
|
||||||
# Record the room ID and its version so that we have a record of the room
|
# Record the room ID and its version so that we have a record of the room
|
||||||
await self._maybe_store_room_on_outlier_membership(
|
await self._maybe_store_room_on_outlier_membership(
|
||||||
room_id=event.room_id, room_version=event_format_version
|
room_id=event.room_id, room_version=event_format_version
|
||||||
|
Loading…
Reference in New Issue
Block a user