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 d30fd5d commit 71920c2Copy full SHA for 71920c2
web/pgadmin/misc/__init__.py
@@ -378,7 +378,9 @@ def upgrade_check():
378
if os.path.exists(config.CA_FILE):
379
context = ssl.create_default_context(cafile=config.CA_FILE)
380
else:
381
- context = ssl.create_default_context(certifi.where())
+ context = ssl.create_default_context(
382
+ cafile=certifi.where()
383
+ )
384
385
response = urlopen(url, data=data, timeout=5,
386
context=context)
0 commit comments