Retry SSH on ENETUNREACH [GH-1732]
This commit is contained in:
parent
af66f5f930
commit
cf1768c7be
|
@ -44,6 +44,7 @@ BUG FIXES:
|
|||
- Shared folder target path can be a Windows path. [GH-1688]
|
||||
- Forwarded ports don't auto-correct by default, and will raise an
|
||||
error properly if they collide. [GH-1701]
|
||||
- Retry SSH on ENETUNREACH error. [GH-1732]
|
||||
|
||||
## 1.2.4 (July 16, 2013)
|
||||
|
||||
|
|
|
@ -186,6 +186,7 @@ module VagrantPlugins
|
|||
Errno::EADDRINUSE,
|
||||
Errno::ECONNREFUSED,
|
||||
Errno::ECONNRESET,
|
||||
Errno::ENETUNREACH,
|
||||
Errno::EHOSTUNREACH,
|
||||
Net::SSH::Disconnect,
|
||||
Timeout::Error
|
||||
|
|
Loading…
Reference in New Issue