diff --git a/lib/vagrant/util/io.rb b/lib/vagrant/util/io.rb index 692ece4f9..c75257b9e 100644 --- a/lib/vagrant/util/io.rb +++ b/lib/vagrant/util/io.rb @@ -25,7 +25,7 @@ module Vagrant # We have to do this since `readpartial` will actually block # until data is available, which can cause blocking forever # in some cases. - results = ::IO.select([io], nil, nil, 0.1) + results = ::IO.select([io], nil, nil, 1.0) break if !results || results[0].empty? # Read!