Merge remote-tracking branch 'origin/dmr/bump-state-timeouts' into matrix-org-hotfixes
commit
8d6bb6e8ee
|
@ -0,0 +1 @@
|
||||||
|
Faster joins: allow the resync process more time to fetch `/state` ids.
|
|
@ -102,6 +102,10 @@ class TransportLayerClient:
|
||||||
destination,
|
destination,
|
||||||
path=path,
|
path=path,
|
||||||
args={"event_id": event_id},
|
args={"event_id": event_id},
|
||||||
|
# This can take a looooooong time for large rooms. Give this a generous
|
||||||
|
# timeout, to avoid the partial state resync timing out early and trying
|
||||||
|
# a bunch of servers who haven't see our join yet.
|
||||||
|
timeout=600,
|
||||||
parser=_StateParser(room_version),
|
parser=_StateParser(room_version),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue