Actions
Bug #3866
closed[SDK] Python KeepClient needs to construct URLs smarter
Story points:
0.5
Description
When the Python KeepClient makes a request to a Keep service, it constructs the Keep service URL with simple string concatenation. This can lead to malformed URLs; e.g., if the service host is an IPv6 address, you'll get a URL like http://100:::8000/...
. We should use a smarter method like urljoin
.
Actions