diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-12-09 11:37:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-09 11:37:26 +0000 |
commit | e519489fc43865a0a01e2295782389e322ba5100 (patch) | |
tree | 08cc4afd9d830876d867a32bf59fecc44d1799d2 /synapse/federation/transport | |
parent | Merge pull request #6484 from matrix-org/erikj/port_sync_handler (diff) | |
download | synapse-e519489fc43865a0a01e2295782389e322ba5100.tar.xz |
Remove fallback for missing /federation/v1/state_ids API (#6488)
This API was added way back in 0.17.0; the code here is annoying to maintain and entirely redundant.
Diffstat (limited to 'synapse/federation/transport')
-rw-r--r-- | synapse/federation/transport/client.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index dc95ab2113..46dba84cac 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -39,30 +39,6 @@ class TransportLayerClient(object): self.client = hs.get_http_client() @log_function - def get_room_state(self, destination, room_id, event_id): - """ Requests all state for a given room from the given server at the - given event. - - Args: - destination (str): The host name of the remote homeserver we want - to get the state from. - context (str): The name of the context we want the state of - event_id (str): The event we want the context at. - - Returns: - Deferred: Results in a dict received from the remote homeserver. - """ - logger.debug("get_room_state dest=%s, room=%s", destination, room_id) - - path = _create_v1_path("/state/%s", room_id) - return self.client.get_json( - destination, - path=path, - args={"event_id": event_id}, - try_trailing_slash_on_400=True, - ) - - @log_function def get_room_state_ids(self, destination, room_id, event_id): """ Requests all state for a given room from the given server at the given event. Returns the state's event_id's |