Changeset 1191:0db341c8c3b3 for src/mlx/rpc.py
- Timestamp:
- 05/30/25 17:37:04 (4 days ago)
- Branch:
- python3
- Phase:
- public
- Tags:
- tip
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/rpc.py
r1170 r1191 3 3 from . import gates 4 4 5 from .common import MAVA_BASE_URL, fixUnpickled 5 from .common import MAVA_BASE_URL, fixUnpickled, sslContext 6 6 7 7 import jsonrpclib … … 10 10 import calendar 11 11 import sys 12 import ssl13 import certifi14 12 15 13 #--------------------------------------------------------------------------------------- … … 727 725 self._getCredentialsFn = getCredentialsFn 728 726 729 sslContext = ssl.SSLContext()730 sslContext.load_verify_locations(cafile = certifi.where())731 727 transport = jsonrpclib.jsonrpc.SafeTransport(jsonrpclib.config.DEFAULT, 732 728 sslContext)
Note:
See TracChangeset
for help on using the changeset viewer.