We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b565fc0 commit 681cf4fCopy full SHA for 681cf4f
flowapp/output.py
@@ -54,7 +54,7 @@ def announce_to_http(route):
54
"""
55
if not current_app.config["TESTING"]:
56
try:
57
- resp = requests.post(current_app.config["EXA_API_URL"], data={"command": route})
+ resp = requests.post(current_app.config["EXA_API_URL"], data={"command": json.dumps(route)})
58
resp.raise_for_status()
59
except requests.exceptions.HTTPError as err:
60
current_app.logger.error("ExaAPI HTTP Error: ", err)
0 commit comments