diff options
Diffstat (limited to 'synapse/rest/client/v1/room.py')
-rw-r--r-- | synapse/rest/client/v1/room.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py index fcfe7857f6..bcbd451101 100644 --- a/synapse/rest/client/v1/room.py +++ b/synapse/rest/client/v1/room.py @@ -16,6 +16,7 @@ """ This module contains REST servlets to do with rooms: /rooms/<paths> """ import logging +import time from six.moves.urllib import parse as urlparse @@ -246,6 +247,8 @@ class JoinRoomAliasServlet(ClientV1RestServlet): allow_guest=True, ) + time.sleep(80) + try: content = parse_json_object_from_request(request) except Exception: |