This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.2.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 4ee1a8b9dd354881bdeb327e1531926545de2f99 Author: Mo Chen <[email protected]> AuthorDate: Sat Jun 20 08:46:43 2026 -0500 tests: give cripts ATS startup a longer readiness window (#13304) (cherry picked from commit a17e04af3b5c7bf6803daecd579fa40fda038ab8) --- tests/gold_tests/autest-site/trafficserver.test.ext | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/gold_tests/autest-site/trafficserver.test.ext b/tests/gold_tests/autest-site/trafficserver.test.ext index a41f8948ce..221aa16be1 100755 --- a/tests/gold_tests/autest-site/trafficserver.test.ext +++ b/tests/gold_tests/autest-site/trafficserver.test.ext @@ -419,6 +419,9 @@ def MakeATSProcess( }) # ATS_ROOT is used by compiler.sh to find the ATS install directory. p.Env['ATS_ROOT'] = p.Variables.PREFIX + # Cripts are compiled at startup, which can exceed the default 10s readiness window + # under CI load and flake the "fully initialized" wait. Give cripts startup more room. + p.StartupTimeout = 60 # The following message was added so that tests and users can know when # Traffic Server is ready to both receive and optimize traffic.
