(#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:
Brian Cain 2017-10-17 16:44:14 -07:00
parent 1294289d96
commit e1d1ba5d55
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ module VagrantPlugins
Errno::ECONNRESET,
Errno::ENETUNREACH,
Errno::EHOSTUNREACH,
Errno::EPIPE,
Net::SSH::Disconnect,
Timeout::Error
]