mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
interface: fix connecting to new servers using self-signed certs
got broken in 6ec1578a90
This commit is contained in:
parent
37da192bf5
commit
eaf203dbb5
1 changed files with 5 additions and 4 deletions
|
@ -177,7 +177,8 @@ class _Connector(aiorpcx.Connector):
|
|||
try:
|
||||
return await super().create_connection()
|
||||
except OSError as e:
|
||||
raise ConnectError(e)
|
||||
# note: using "from e" here will set __cause__ of ConnectError
|
||||
raise ConnectError(e) from e
|
||||
|
||||
|
||||
def deserialize_server(server_str: str) -> Tuple[str, str, str]:
|
||||
|
@ -254,11 +255,11 @@ class Interface(Logger):
|
|||
"""
|
||||
try:
|
||||
await self.open_session(ca_ssl_context, exit_early=True)
|
||||
except ssl.SSLError as e:
|
||||
if e.reason == 'CERTIFICATE_VERIFY_FAILED':
|
||||
except ConnectError as e:
|
||||
cause = e.__cause__
|
||||
if isinstance(cause, ssl.SSLError) and cause.reason == 'CERTIFICATE_VERIFY_FAILED':
|
||||
# failures due to self-signed certs are normal
|
||||
return False
|
||||
# e.g. too weak crypto
|
||||
raise
|
||||
return True
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue