summaryrefslogtreecommitdiff
path: root/test/net/http
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-06-21 23:21:47 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-06-21 23:21:48 -0700
commit7658a0f8fe9586b66f2a8f1efb652d2bcffad358 (patch)
tree872e3d88f2cd98bc3c69093f59a32a2c29f28ad4 /test/net/http
parenteed4aaa0bf8aa3109936c4276a71c0cdab4d54d6 (diff)
Try increasing read_timeout a little more
It failed again http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3018488
Diffstat (limited to 'test/net/http')
-rw-r--r--test/net/http/test_httpresponse.rb2
1 files changed, 1 insertions, 1 deletions
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