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 0a407a1c9c831d9d583fb46c82c871bb85ae26af Author: Brian Neradt <[email protected]> AuthorDate: Thu Jul 18 12:38:47 2024 -0500 Fix server names for post-early-return (#11563) The post-early-return.test.py server* names are all copy and pasted as "server1" which means they are not configured correctly. This patch updates those names so they are distinct. (cherry picked from commit 5f29d55f3cff865f2178d597199d72eb747ac80b) --- tests/gold_tests/post/post-early-return.test.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/gold_tests/post/post-early-return.test.py b/tests/gold_tests/post/post-early-return.test.py index e81100c112..ac699f47b2 100644 --- a/tests/gold_tests/post/post-early-return.test.py +++ b/tests/gold_tests/post/post-early-return.test.py @@ -63,15 +63,15 @@ ts.Disk.records_config.update( server1 = Test.Processes.Process( "server1", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port1)) server2 = Test.Processes.Process( - "server1", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port2)) + "server2", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port2)) server3 = Test.Processes.Process( - "server1", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port3)) + "server3", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port3)) server4 = Test.Processes.Process( - "server1", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port4)) + "server4", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port4)) server5 = Test.Processes.Process( - "server1", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port5)) + "server5", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port5)) server6 = Test.Processes.Process( - "server1", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port6)) + "server6", "bash -c '" + Test.TestDirectory + "/server1.sh {} outserver1'".format(Test.Variables.upstream_port6)) big_post_body = "0123456789" * 231070 big_post_body_file = open(os.path.join(Test.RunDirectory, "big_post_body"), "w")
