From cb46742f84688fd17003ebc462bad359722ab39b Mon Sep 17 00:00:00 2001 From: Patrick Kennel Date: Thu, 2 Jul 2020 16:08:26 -0700 Subject: [PATCH] bugfix: fix logging statement which was lying --- itsybitsy/itsybitsy_plugins/provider_ssh.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/itsybitsy/itsybitsy_plugins/provider_ssh.py b/itsybitsy/itsybitsy_plugins/provider_ssh.py index e583c75..77b9025 100644 --- a/itsybitsy/itsybitsy_plugins/provider_ssh.py +++ b/itsybitsy/itsybitsy_plugins/provider_ssh.py @@ -131,7 +131,8 @@ async def _configure(address: str): asyncssh.connect(jump_server_address, **ssh_connect_args), timeout=5 ) except asyncio.TimeoutError: - print(colored(f"Timeout connecting to SSH bastion server: {address}. Try turning it off and on again.", 'red')) + print(colored(f"Timeout connecting to SSH bastion server: {jump_server_address}. " + f"Try turning it off and on again.", 'red')) sys.exit(1) except asyncssh.PermissionDenied: print(colored(f"SSH Permission denied attempting to connect to {address}. It is possible that your SSH Key "