Skip to content

Commit

Permalink
Disable ssh key scan on wait for ssh (#20836)
Browse files Browse the repository at this point in the history
Disable ssh key scan on wait for ssh.
  • Loading branch information
hadeskun authored Dec 18, 2024
1 parent 46b3a65 commit 19505d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/sles4sap/publiccloud/azure_fence_agents_test.pm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sub run {
$self->{my_instance} = $instance;
# do not probe VMs that are not part of the cluster
next unless grep(/^$instance->{instance_id}$/, @cluster_nodes);
$instance->wait_for_ssh(scan_ssh_host_key => 1);
$instance->wait_for_ssh();
my $scp_cmd = join('', 'scp /tmp/bashrc ',
$instance->{username},
'@', $instance->{public_ip},
Expand Down
2 changes: 1 addition & 1 deletion tests/sles4sap/publiccloud/qesap_prevalidate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sub run {
$self->{my_instance} = $instance;
my $instance_id = $instance->{'instance_id'};
# Check ssh connection for all hosts
$instance->wait_for_ssh(scan_ssh_host_key => 1);
$instance->wait_for_ssh();

# Skip instances without HANA db or setup without cluster
next if ($instance_id !~ m/vmhana/) or !$ha_enabled;
Expand Down

0 comments on commit 19505d3

Please sign in to comment.