Up to cryptography 3.4.1 - better show error. (#857)

This commit is contained in:
Gene Hoffman 2021-02-07 19:30:32 -08:00 committed by GitHub
parent 6ce855702b
commit 75a858c6a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ dependencies = [
"cbor2==5.2.0", # Used for network wire format
"colorlog==4.7.2", # Adds color to logs
"concurrent-log-handler==0.9.19", # Concurrently log and rotate logs
"cryptography==3.3.1", # Python cryptography library for TLS
"cryptography==3.4.1", # Python cryptography library for TLS
"keyring==21.5.0", # Store keys in MacOS Keychain, Windows Credential Locker
"keyrings.cryptfile==1.3.4", # Secure storage for keys on Linux (Will be replaced)
"PyYAML==5.3.1", # Used for config file format

View File

@ -335,6 +335,7 @@ async def show_async(args, parser):
except Exception as e:
if isinstance(e, aiohttp.client_exceptions.ClientConnectorError):
print(f"Connection error. Check if full node rpc is running at {args.rpc_port}")
print("This is normal if full node is still starting up.")
else:
tb = traceback.format_exc()
print(f"Exception from 'show' {tb}")