We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c881e6c commit 0020261Copy full SHA for 0020261
django_afip/clients.py
@@ -58,11 +58,13 @@ class AFIPAdapter(HTTPAdapter):
58
59
def init_poolmanager(self, *args, **kwargs) -> PoolManager:
60
context = create_urllib3_context(ciphers=CIPHERS)
61
+ context.load_default_certs()
62
kwargs["ssl_context"] = context
63
return super().init_poolmanager(*args, **kwargs)
64
65
def proxy_manager_for(self, *args, **kwargs) -> ProxyManager:
66
67
68
69
return super().proxy_manager_for(*args, **kwargs)
70
0 commit comments