FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 6683e70b authored by Dr Rich Wareham's avatar Dr Rich Wareham
Browse files

make sure form parameters are correctly encoded [REVIEW]

parent 5bcbfed1
No related branches found
No related tags found
1 merge request!4make use of requests library to handle TLS
Pipeline #133110 passed
......@@ -224,6 +224,7 @@ class IbisClientConnection:
"""
path_params = self._params_to_strings(path_params)
query_params = self._params_to_strings(query_params)
form_params = self._params_to_strings(form_params)
url = "https://%s:%s%s" % (
self.host, self.port,
......
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