summary refs log tree commit diff
path: root/scripts-dev/federation_client.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-11-14 11:54:29 +0000
committerRichard van der Hoff <richard@matrix.org>2018-11-14 11:54:29 +0000
commitb699178aa153eb6285fa4c582f7d287ee23c8497 (patch)
treeac890bdd98c9f84b9e18ce26fcea4fccad7c562c /scripts-dev/federation_client.py
parentMerge remote-tracking branch 'origin/erikj/fix_device_comparison' into matrix... (diff)
parentMerge pull request #4184 from matrix-org/rav/fix_public_consent (diff)
downloadsynapse-b699178aa153eb6285fa4c582f7d287ee23c8497.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'scripts-dev/federation_client.py')
-rwxr-xr-xscripts-dev/federation_client.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts-dev/federation_client.py b/scripts-dev/federation_client.py

index 2566ce7cef..e0287c8c6c 100755 --- a/scripts-dev/federation_client.py +++ b/scripts-dev/federation_client.py
@@ -154,10 +154,15 @@ def request_json(method, origin_name, origin_key, destination, path, content): s = requests.Session() s.mount("matrix://", MatrixConnectionAdapter()) + headers = {"Host": destination, "Authorization": authorization_headers[0]} + + if method == "POST": + headers["Content-Type"] = "application/json" + result = s.request( method=method, url=dest, - headers={"Host": destination, "Authorization": authorization_headers[0]}, + headers=headers, verify=False, data=content, ) @@ -203,7 +208,7 @@ def main(): parser.add_argument( "-X", "--method", - help="HTTP method to use for the request. Defaults to GET if --data is" + help="HTTP method to use for the request. Defaults to GET if --body is" "unspecified, POST if it is.", )