Hi everyone!
I’m looking for some help on the new VScode extension.
When I try to re-run a failed job using ssh as showed here, I get an
kex_exchange_identification: read: Operation timed out
banner exchange: Connection to 54.198.229.236 port 64536: Operation timed out
error.
As context I’m using a conda virtual env from python, and I’m seeing that its trying to activate the environment after executing the connection, but I think that should not make any difference in trying to establish the connection.
This is what I see it tries to do in the terminal:
ssh -p 64536 54.198.229.236 -i "/Users/XXXXXXX/.ssh/id_ed25519"
╭─~/Desktop/projectfolder-w ‹git_branch_name›
╰─$ ssh -p 64536 54.198.229.236 -i "/Users/XXXXXXXX/.ssh/id_ed25519"
conda activate env_test
kex_exchange_identification: read: Operation timed out
banner exchange: Connection to 54.198.229.236 port 64536: Operation timed out
Does anyone knows how to fix this?