This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit d252c87a5f2d93409d3035d5de8e771aae4eaf1e Author: Damian Meden <[email protected]> AuthorDate: Fri Apr 5 23:01:42 2024 +0200 Fix test_TSHttpSsnInfo: Use host name instead of numeric address. (#11218) (cherry picked from commit 611cb23d624c09b45594bece4ac29df621a5d3f2) --- tests/gold_tests/pluginTest/tsapi/test_TSHttpSsnInfo.test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gold_tests/pluginTest/tsapi/test_TSHttpSsnInfo.test.py b/tests/gold_tests/pluginTest/tsapi/test_TSHttpSsnInfo.test.py index 421e2aa720..fa25fe3309 100644 --- a/tests/gold_tests/pluginTest/tsapi/test_TSHttpSsnInfo.test.py +++ b/tests/gold_tests/pluginTest/tsapi/test_TSHttpSsnInfo.test.py @@ -73,7 +73,7 @@ Test.Env["OUTPUT_FILE"] = log_path # H2 SETTINGS, PRIORITY, HEADERS, CONTINUATION, DATA, GOAWAY tr = Test.AddTestRun() tr.TimeOut = 10 -tr.Processes.Default.Command = f"nghttp -vn --continuation 'https://127.0.0.1:{ts.Variables.ssl_port}/httpbin/post' -d 'post_body'" +tr.Processes.Default.Command = f"nghttp -vn --continuation 'https://localhost:{ts.Variables.ssl_port}/httpbin/post' -d 'post_body'" tr.Processes.Default.ReturnCode = 0 tr.Processes.Default.StartBefore(httpbin, ready=When.PortOpen(httpbin.Variables.Port)) tr.Processes.Default.StartBefore(Test.Processes.ts) @@ -85,7 +85,7 @@ tr.StillRunningAfter = ts if Condition.HasATSFeature('TS_USE_QUIC') and Condition.HasCurlFeature('http3'): tr = Test.AddTestRun() tr.TimeOut = 10 - tr.Processes.Default.Command = f"curl -k --http3 'https://127.0.0.1:{ts.Variables.ssl_port}/httpbin/post' -d 'post_body'" + tr.Processes.Default.Command = f"curl -k --http3 'https://localhost:{ts.Variables.ssl_port}/httpbin/post' -d 'post_body'" tr.Processes.Default.ReturnCode = 0 tr.Processes.Default.Streams.stdout = "test_TSHttpSsnInfo_curl0.gold" tr.StillRunningAfter = httpbin
