Skip to content
Snippets Groups Projects
Commit 97f072db authored by Erik Johnston's avatar Erik Johnston
Browse files

Print status code in federation_client.py

parent 9a2f296f
No related branches found
No related tags found
No related merge requests found
......@@ -128,6 +128,7 @@ def get_json(origin_name, origin_key, destination, path):
headers={"Authorization": authorization_headers[0]},
verify=False,
)
sys.stderr.write("Status Code: %d\n" % (result.status_code,))
return result.json()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment