diff options
author | Erik Johnston <erik@matrix.org> | 2023-01-20 21:04:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 21:04:33 +0000 |
commit | 0ec12a37538d0df07d96cfc9cf5f5208f7453607 (patch) | |
tree | f5d217dac0a6cdf5d7734a25724a8f903a134d76 /synapse/replication/http | |
parent | Always notify replication when a stream advances (#14877) (diff) | |
download | synapse-0ec12a37538d0df07d96cfc9cf5f5208f7453607.tar.xz |
Reduce max time we wait for stream positions (#14881)
Now that we wait for stream positions whenever we do a HTTP replication hit, we need to be less brutal in the case where we do timeout (as we have bugs around this).
Diffstat (limited to 'synapse/replication/http')
-rw-r--r-- | synapse/replication/http/_base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py index 709327b97f..908f3f1db7 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py @@ -352,7 +352,6 @@ class ReplicationEndpoint(metaclass=abc.ABCMeta): instance_name=instance_name, stream_name=stream_name, position=position, - raise_on_timeout=False, ) return result @@ -414,7 +413,6 @@ class ReplicationEndpoint(metaclass=abc.ABCMeta): instance_name=content[_STREAM_POSITION_KEY]["instance_name"], stream_name=stream_name, position=position, - raise_on_timeout=False, ) if self.CACHE: |