This is an automated email from the ASF dual-hosted git repository.
dmeden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new fa68c156e9 H3 - Update QUIC test to use hostname instead of numeric
address. (#11175)
fa68c156e9 is described below
commit fa68c156e9c305ca73086c6f17ce0f2e9048ad97
Author: Damian Meden <[email protected]>
AuthorDate: Fri Mar 22 11:49:23 2024 +0100
H3 - Update QUIC test to use hostname instead of numeric address. (#11175)
---
tests/gold_tests/timeout/active_timeout.test.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/gold_tests/timeout/active_timeout.test.py
b/tests/gold_tests/timeout/active_timeout.test.py
index c38272447e..cb8bbc95ab 100644
--- a/tests/gold_tests/timeout/active_timeout.test.py
+++ b/tests/gold_tests/timeout/active_timeout.test.py
@@ -62,5 +62,5 @@ tr3.Processes.Default.Streams.stdout =
Testers.ContainsExpression("Activity Time
if Condition.HasATSFeature('TS_HAS_QUICHE') and
Condition.HasCurlFeature('http3'):
tr4 = Test.AddTestRun("tr")
- tr4.Processes.Default.Command = 'curl -k -i --http3
https://127.0.0.1:{0}/file'.format(ts.Variables.ssl_port)
+ tr4.Processes.Default.Command = 'curl -k -i --http3
https://localhost:{0}/file'.format(ts.Variables.ssl_port)
tr4.Processes.Default.Streams.stdout =
Testers.ContainsExpression("Activity Timeout", "Request should fail with active
timeout")