Skip to content

Commit

Permalink
Merge pull request #383 from SUSE-Enceladus/ssh-lookup
Browse files Browse the repository at this point in the history
Do not search for ssh keys
  • Loading branch information
smarlowucf authored Apr 15, 2024
2 parents 99ad537 + bc9b81e commit 844114e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion img_proof/ipa_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ def establish_ssh_connection(ip,
port=port,
username=ssh_user,
key_filename=ssh_private_key_file,
timeout=timeout
timeout=timeout,
allow_agent=False,
look_for_keys=False
)
except FileNotFoundError:
raise
Expand Down

0 comments on commit 844114e

Please sign in to comment.