class Net::SSH::Multi::Server
Public Instance Methods
busy?(include_invisible=false)
click to toggle source
Make sure that server returns false if the ssh connection has failed.
# File lib/chef/monkey_patches/net-ssh-multi.rb, line 50 def busy?(include_invisible=false) !failed? && session && session.busy?(include_invisible) end