Skip to content

Commit

Permalink
don't reuse ssh connection, it don't work well under cygwin matschaff…
Browse files Browse the repository at this point in the history
  • Loading branch information
keeruline committed Dec 18, 2013
1 parent 1e1675f commit d57894b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/knife-solo/ssh_connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def initialize(host, user, connection_options, sudo_password_hook)
attr_reader :host, :user, :connection_options

def session
@session ||= Net::SSH.start(host, user, connection_options)
Net::SSH.start(host, user, connection_options)
end

def password
Expand Down

0 comments on commit d57894b

Please sign in to comment.