Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Change the parameter immediate of send_device_messages to default…
Browse files Browse the repository at this point in the history
… to `True` (#15297)
  • Loading branch information
H-Shay committed Mar 22, 2023
1 parent b320145 commit 72f3f23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/15297.bugfix
@@ -0,0 +1 @@
Fix a bug introduced in Synapse v1.55.0 which could delay remote homeservers being able to decrypt encrypted messages sent by local users.
2 changes: 1 addition & 1 deletion synapse/federation/send_queue.py
Expand Up @@ -244,7 +244,7 @@ def send_presence_to_destinations(

self.notifier.on_new_replication_data()

def send_device_messages(self, destination: str, immediate: bool = False) -> None:
def send_device_messages(self, destination: str, immediate: bool = True) -> None:
"""As per FederationSender"""
# We don't need to replicate this as it gets sent down a different
# stream.
Expand Down
2 changes: 1 addition & 1 deletion synapse/federation/sender/__init__.py
Expand Up @@ -783,7 +783,7 @@ def send_edu(self, edu: Edu, key: Optional[Hashable]) -> None:
else:
queue.send_edu(edu)

def send_device_messages(self, destination: str, immediate: bool = False) -> None:
def send_device_messages(self, destination: str, immediate: bool = True) -> None:
if destination == self.server_name:
logger.warning("Not sending device update to ourselves")
return
Expand Down

0 comments on commit 72f3f23

Please sign in to comment.