From e1d1ba5d55615480708d3fa40689ebf9a1dc9032 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Tue, 17 Oct 2017 16:44:14 -0700 Subject: [PATCH] (#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. --- plugins/communicators/ssh/communicator.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/communicators/ssh/communicator.rb b/plugins/communicators/ssh/communicator.rb index 831dcc779..8a562a8b1 100644 --- a/plugins/communicators/ssh/communicator.rb +++ b/plugins/communicators/ssh/communicator.rb @@ -36,6 +36,7 @@ module VagrantPlugins Errno::ECONNRESET, Errno::ENETUNREACH, Errno::EHOSTUNREACH, + Errno::EPIPE, Net::SSH::Disconnect, Timeout::Error ]