lib/vagrant/util/is_port_open.rb in vagrant-unbundled-2.2.6.2 vs lib/vagrant/util/is_port_open.rb in vagrant-unbundled-2.2.7.0
- old
+ new
@@ -28,11 +28,10 @@
# The port is open if we reached this point, since we were able
# to connect.
return true
end
rescue Timeout::Error, Errno::ECONNREFUSED, Errno::EHOSTUNREACH, \
- Errno::ENETUNREACH, Errno::EACCES, Errno::ENOTCONN, \
- Errno::EADDRNOTAVAIL
+ Errno::ENETUNREACH, Errno::EACCES, Errno::ENOTCONN
# Any of the above exceptions signal that the port is closed.
return false
end
end
end