Skip to content

Commit

Permalink
Fix for issue #144
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihal Muktala committed Aug 22, 2023
1 parent 76d4d1e commit ce84d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebcli/operations/sshops.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def ssh_into_instance(instance_id, keep_open=False, force_open=False, custom_ssh
custom_ssh = custom_ssh.split()
else:
ident_file = _get_ssh_file(keypair_name)
custom_ssh = ['ssh', '-i', ident_file]
custom_ssh = ['ssh', '-i', ident_file, '-o', 'IdentitiesOnly yes']

custom_ssh.extend([user + '@' + ip])

Expand Down

0 comments on commit ce84d0a

Please sign in to comment.