federation_client: stop adding URL prefix (#9645)

This commit is contained in:
Richard van der Hoff 2021-03-18 20:31:47 +00:00 committed by GitHub
parent 9b0e3009fa
commit 201178db1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

1
changelog.d/9645.misc Normal file
View file

@ -0,0 +1 @@
In the `federation_client` commandline client, stop automatically adding the URL prefix, so that servlets on other prefixes can be tested.

View file

@ -223,7 +223,7 @@ def main():
parser.add_argument("--body", help="Data to send as the body of the HTTP request")
parser.add_argument(
"path", help="request path. We will add '/_matrix/federation/v1/' to this."
"path", help="request path, including the '/_matrix/federation/...' prefix."
)
args = parser.parse_args()
@ -239,7 +239,7 @@ def main():
args.server_name,
key,
args.destination,
"/_matrix/federation/v1/" + args.path,
args.path,
content=args.body,
)