diff options
author | Travis Ralston <travpc@gmail.com> | 2018-11-07 17:12:36 -0700 |
---|---|---|
committer | Travis Ralston <travpc@gmail.com> | 2018-11-07 17:12:36 -0700 |
commit | 6bcfbcea5c45e65209bb17117e5805ab4514ed90 (patch) | |
tree | 88891727c717e2eb58867f4d4ca7b52945c582fe | |
parent | Cause timeout errors on joins (diff) | |
download | synapse-6bcfbcea5c45e65209bb17117e5805ab4514ed90.tar.xz |
More timeout
-rw-r--r-- | synapse/rest/client/v1/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py index bcbd451101..bb48ded96e 100644 --- a/synapse/rest/client/v1/room.py +++ b/synapse/rest/client/v1/room.py @@ -247,7 +247,7 @@ class JoinRoomAliasServlet(ClientV1RestServlet): allow_guest=True, ) - time.sleep(80) + time.sleep(240) try: content = parse_json_object_from_request(request) |