diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-03-11 17:44:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 17:44:03 +0000 |
commit | 290552fd836f4ae2dc1d893a7f72f7fff85365d3 (patch) | |
tree | cf4d99ab9288d926746100d3664855043c03fac1 /synapse/federation/transport/client.py | |
parent | Merge pull request #4847 from matrix-org/erikj/fix_stacktrace_keyring (diff) | |
download | synapse-290552fd836f4ae2dc1d893a7f72f7fff85365d3.tar.xz |
Make federation endpoints more tolerant of trailing slashes for some endpoints (#4793)
Server side of a solution towards #3622.
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 8e2be218e2..4e8919d657 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -167,7 +167,7 @@ class TransportLayerClient(object): # generated by the json_data_callback. json_data = transaction.get_dict() - path = _create_v1_path("/send/%s/", transaction.transaction_id) + path = _create_v1_path("/send/%s", transaction.transaction_id) response = yield self.client.put_json( transaction.destination, |