1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[aws|compute] don't kill auth errors in setup

This commit is contained in:
geemus 2010-12-05 12:36:58 -08:00
parent 484c6666d9
commit ca633b92e7

View file

@ -167,7 +167,7 @@ module Fog
Timeout::timeout(4) do
Fog::SSH.new(ip_address, username, credentials).run(commands)
end
rescue Net::SSH::AuthenticationFailed, Timeout::Error
rescue Timeout::Error
retry
end
end