Skip to content

Commit

Permalink
Merge pull request #18920 from djberg96/conversion_host_use_agent
Browse files Browse the repository at this point in the history
[V2V] Don't use the ssh agent when verifying credentials
  • Loading branch information
agrare authored Jun 28, 2019
2 parents 179d846 + d7c6b6f commit 049727a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/conversion_host.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def verify_credentials(auth_type = nil, options = {})

auth = authentication_type(auth_type) || authentications.first

ssh_options = { :timeout => 10, :logger => $log, :verbose => :error }
ssh_options = { :timeout => 10, :logger => $log, :verbose => :error, :use_agent => false }

case auth
when AuthUseridPassword
Expand Down

0 comments on commit 049727a

Please sign in to comment.