From 7658a0f8fe9586b66f2a8f1efb652d2bcffad358 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sun, 21 Jun 2020 23:21:47 -0700 Subject: [PATCH] Try increasing read_timeout a little more It failed again http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3018488 --- test/net/http/test_httpresponse.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/net/http/test_httpresponse.rb b/test/net/http/test_httpresponse.rb index ca4263e110..f408195771 100644 --- a/test/net/http/test_httpresponse.rb +++ b/test/net/http/test_httpresponse.rb @@ -88,7 +88,7 @@ EOS :ok end io = Net::BufferedIO.new(r) - io.read_timeout *= 5 if RubyVM::MJIT.enabled? # for --jit-wait + io.read_timeout *= 10 if RubyVM::MJIT.enabled? # for --jit-wait res = Net::HTTPResponse.read_new(io) nr = 0 res.reading_body io, true do