This is an automated email from the ASF dual-hosted git repository. zwoop pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit ab5f56c08ebcf5e17525ceb15611320cda77db61 Author: Randall Meyer <[email protected]> AuthorDate: Fri Nov 1 16:46:03 2019 -0700 Normalize loopback usage in session_match autest (cherry picked from commit 07e6e2d4243ef218410b6dff22f85cfb314492cd) --- tests/gold_tests/session_sharing/session_match.test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/gold_tests/session_sharing/session_match.test.py b/tests/gold_tests/session_sharing/session_match.test.py index 2e619e5..20dcd61 100644 --- a/tests/gold_tests/session_sharing/session_match.test.py +++ b/tests/gold_tests/session_sharing/session_match.test.py @@ -70,9 +70,9 @@ class SessionMatchTest: def _runTraffic(self): self._tr.Processes.Default.Command = ( - 'curl -v -H\'Host: www.example.com\' -H\'Connection: close\' http://127.0.1:{port}/one &&' - 'curl -v -H\'Host: www.example.com\' -H\'Connection: close\' http://127.0.1:{port}/two &&' - 'curl -v -H\'Host: www.example.com\' -H\'Connection: close\' http://127.0.1:{port}/three'.format( + 'curl -v -H\'Host: www.example.com\' -H\'Connection: close\' http://127.0.0.1:{port}/one &&' + 'curl -v -H\'Host: www.example.com\' -H\'Connection: close\' http://127.0.0.1:{port}/two &&' + 'curl -v -H\'Host: www.example.com\' -H\'Connection: close\' http://127.0.0.1:{port}/three'.format( port = self._ts.Variables.port)) self._tr.Processes.Default.ReturnCode = 0 self._tr.Processes.Default.StartBefore(self._server)
