commit | 6e380306ef48af4050a61f2f91b3c8380d8e78fb | [log] [tgz] |
---|---|---|
author | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | Sat Mar 01 09:29:48 2025 +0400 |
committer | Jens Geyer <Jens-G@users.noreply.github.com> | Tue Mar 04 01:06:37 2025 +0100 |
tree | f17754bc37b6f8e914ef6382e79ab54894a7228f | |
parent | 1075010915ee9638e22b33a11ea37b55699e267b [diff] |
http.client.HTTPSConnection: drop key_file, cert_file Because remove in Python 3.12 https://docs.python.org/3/whatsnew/3.12.html#others
diff --git a/lib/py/src/transport/THttpClient.py b/lib/py/src/transport/THttpClient.py index d545ce5..cda5f83 100644 --- a/lib/py/src/transport/THttpClient.py +++ b/lib/py/src/transport/THttpClient.py
@@ -111,8 +111,6 @@ timeout=self.__timeout) elif self.scheme == 'https': self.__http = http.client.HTTPSConnection(self.host, self.port, - key_file=self.keyfile, - cert_file=self.certfile, timeout=self.__timeout, context=self.context) if self.using_proxy():