From c0938fd24c927954dbe5d42e70844b6a89516786 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Tue, 6 Aug 2024 20:12:37 +0900 Subject: [PATCH] Use 3min for test parallel worker timeout again --- tool/lib/test/unit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb index 0eb8ab4c6d..6175b2a531 100644 --- a/tool/lib/test/unit.rb +++ b/tool/lib/test/unit.rb @@ -282,7 +282,7 @@ module Test options[:parallel] ||= 256 # number of tokens to acquire first end end - @worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 3600) + @worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 180) super end