bneradt commented on code in PR #13489: URL: https://github.com/apache/trafficserver/pull/13489#discussion_r3715629539
########## tests/gold_tests/chunked_encoding/server2.sh: ########## @@ -38,4 +38,4 @@ response () } outfile=$2 -response | nc -l $1 > "$outfile" +response | nc -lk "$1" > "$outfile" Review Comment: Replaced nc -k origins with a deterministic Python socket server that ignores readiness probes, serves one request, then exits. ########## tests/gold_tests/chunked_encoding/server3.sh: ########## @@ -38,4 +38,4 @@ response () } outfile=$2 -response | nc -l $1 > "$outfile" +response | nc -lk "$1" > "$outfile" Review Comment: Replaced nc -k origins with a deterministic Python socket server that ignores readiness probes, serves one request, then exits. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
