We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c5169b commit 79a7337Copy full SHA for 79a7337
1 file changed
benchbot_api/benchbot.py
@@ -152,8 +152,8 @@ def _send(self,
152
"""
153
data = {} if data is None else data
154
try:
155
- resp = requests.get(self._build_address(route_name, route_type),
156
- json=data)
+ resp = requests.post(self._build_address(route_name, route_type),
+ json=data)
157
if resp.status_code >= 300:
158
raise _UnexpectedResponseError(resp.status_code)
159
except:
0 commit comments