This is an automated email from the ASF dual-hosted git repository.

shinrich 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 870e242eee Remove unnecessary nc to fix u22 test (#10868)
870e242eee is described below

commit 870e242eee6d382750ad383abde03e416314bba0
Author: Susan Hinrichs <shinri...@aviatrix.com>
AuthorDate: Wed Nov 29 10:57:55 2023 -0600

    Remove unnecessary nc to fix u22 test (#10868)
---
 tests/gold_tests/headers/cache_and_req_body.test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/gold_tests/headers/cache_and_req_body.test.py 
b/tests/gold_tests/headers/cache_and_req_body.test.py
index dfdda324fa..95b4ebd400 100644
--- a/tests/gold_tests/headers/cache_and_req_body.test.py
+++ b/tests/gold_tests/headers/cache_and_req_body.test.py
@@ -99,8 +99,8 @@ tr.StillRunningAfter = ts
 
 # Test 2 - 200 cached response and using netcat
 tr = Test.AddTestRun()
-tr.Processes.Default.Command = "printf 'GET / HTTP/1.1\r\n''x-debug: 
x-cache,x-cache-key,via\r\n''Host: www.example.com\r\n''\r\n'|nc 127.0.0.1 -w 1 
{port}".format(
-    port=ts.Variables.port)
+tr.Processes.Default.Command = 'curl -s -D - -v --ipv4 --http1.1 -H "x-debug: 
x-cache,x-cache-key,via" -H "Host: www.example.com" http://localhost:{}'.format(
+    ts.Variables.port)
 tr.Processes.Default.ReturnCode = 0
 tr.Processes.Default.Streams.stdout = 
Testers.CurlHeader(cache_and_req_body_hit)
 tr.StillRunningAfter = ts

Reply via email to