Skip to content
Snippets Groups Projects
Commit 914f1eaf authored by Erik Johnston's avatar Erik Johnston
Browse files

Lower timeout for make_membership_event

Calls to make_membership_event are done in response to client requests,
and so should not be retried over long timeframes.
parent 737aee92
No related branches found
No related tags found
No related merge requests found
......@@ -179,7 +179,8 @@ class TransportLayerClient(object):
content = yield self.client.get_json(
destination=destination,
path=path,
retry_on_dns_fail=True,
retry_on_dns_fail=False,
timeout=20000,
)
defer.returnValue(content)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment