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

Change the parameter immediate of send_device_messages to default to True #15297

Merged
merged 5 commits into from
Mar 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
unify function signatures
  • Loading branch information
H-Shay committed Mar 21, 2023
commit 9471283956074b69409af13784e575f0cc1ff980
2 changes: 1 addition & 1 deletion synapse/federation/send_queue.py
Original file line number Diff line number Diff line change
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