DEV: Increase http timeouts in bin/qunit (#36260)

In slower CI environments, it seems that 2s is too short for this check
This commit is contained in:
David Taylor
2025-11-26 17:39:04 +00:00
committed by GitHub
parent ac5ff27ae0
commit 9b7ec266ef
+2 -2
View File
@@ -337,8 +337,8 @@ class QunitRunner
def check_server(port, name)
uri = URI("http://localhost:#{port}")
http = Net::HTTP.new(uri.host, uri.port)
http.open_timeout = 2
http.read_timeout = 2
http.open_timeout = 5
http.read_timeout = 5
begin
response = http.get("/")