(#8974) Add Errno::EPIPE exception to ssh communicator
This commit adds an additional exception to retry ssh on when bringing up a machine and attempting to ssh into the guest.
This commit is contained in:
parent
1294289d96
commit
e1d1ba5d55
|
@ -36,6 +36,7 @@ module VagrantPlugins
|
|||
Errno::ECONNRESET,
|
||||
Errno::ENETUNREACH,
|
||||
Errno::EHOSTUNREACH,
|
||||
Errno::EPIPE,
|
||||
Net::SSH::Disconnect,
|
||||
Timeout::Error
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue