mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-24 07:04:12 -04:00
parent
d8be7d493d
commit
c96ab31dff
2 changed files with 4 additions and 2 deletions
|
@ -3056,8 +3056,9 @@ class FederationHandler(BaseHandler):
|
|||
"""
|
||||
instance = self.config.worker.events_shard_config.get_instance(room_id)
|
||||
if instance != self._instance_name:
|
||||
# Limit the number of events sent over federation.
|
||||
for batch in batch_iter(event_and_contexts, 1000):
|
||||
# Limit the number of events sent over replication. We choose 200
|
||||
# here as that is what we default to in `max_request_body_size(..)`
|
||||
for batch in batch_iter(event_and_contexts, 200):
|
||||
result = await self._send_events(
|
||||
instance_name=instance,
|
||||
store=self.store,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue