diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-14 13:53:02 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-02-21 09:04:33 +0000 |
commit | 0bd8cf435e307a72c91667caff746fec7c233f16 (patch) | |
tree | 09f4b6f26599c945482386ae09aa807d7ce356d5 /synapse | |
parent | Do not send alias events when creating / upgrading a room (#6941) (diff) | |
download | synapse-0bd8cf435e307a72c91667caff746fec7c233f16.tar.xz |
Increase MAX_EVENTS_BEHIND for replication clients
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/replication/tcp/streams/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py index a8d568b14a..208e8a667b 100644 --- a/synapse/replication/tcp/streams/_base.py +++ b/synapse/replication/tcp/streams/_base.py @@ -24,7 +24,7 @@ import attr logger = logging.getLogger(__name__) -MAX_EVENTS_BEHIND = 10000 +MAX_EVENTS_BEHIND = 500000 BackfillStreamRow = namedtuple( "BackfillStreamRow", |