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

cmcfarlen pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit a0e912adab75fda606c384c62bb55cb6ed7d888a
Author: Masaori Koshiba <[email protected]>
AuthorDate: Wed Jul 30 08:18:25 2025 +0900

    AuTest: reduce port usage in the Remap ACL test (#12402)
    
    (cherry picked from commit 347a5a33e35353be073984f67a29159038e991f4)
---
 tests/gold_tests/remap/remap_acl.test.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/gold_tests/remap/remap_acl.test.py 
b/tests/gold_tests/remap/remap_acl.test.py
index d3001a33f0..e6d6027ce4 100644
--- a/tests/gold_tests/remap/remap_acl.test.py
+++ b/tests/gold_tests/remap/remap_acl.test.py
@@ -59,7 +59,7 @@ class Test_remap_acl:
 
         tr = Test.AddTestRun(name)
         self._configure_server(tr)
-        self._configure_traffic_server(tr)
+        self._configure_traffic_server(tr, proxy_protocol)
         self._configure_client(tr, proxy_protocol)
 
     def _configure_server(self, tr: 'TestRun') -> None:
@@ -72,14 +72,14 @@ class Test_remap_acl:
         Test_remap_acl._server_counter += 1
         self._server = server
 
-    def _configure_traffic_server(self, tr: 'TestRun') -> None:
+    def _configure_traffic_server(self, tr: 'TestRun', proxy_protocol: bool) 
-> None:
         """Configure Traffic Server.
 
         :param tr: The TestRun object to associate the Traffic Server process 
with.
         """
 
         name = f"ts-{Test_remap_acl._ts_counter}"
-        ts = tr.MakeATSProcess(name, enable_cache=False, enable_tls=True, 
enable_proxy_protocol=True)
+        ts = tr.MakeATSProcess(name, enable_cache=False, 
enable_proxy_protocol=proxy_protocol, enable_uds=False)
         Test_remap_acl._ts_counter += 1
         self._ts = ts
 
@@ -159,7 +159,7 @@ class Test_old_action:
         '''
         name = f"ts-old-action-{Test_old_action._ts_counter}"
         Test_old_action._ts_counter += 1
-        ts = tr.MakeATSProcess(name)
+        ts = tr.MakeATSProcess(name, enable_uds=False)
         self._ts = ts
 
         ts.Disk.records_config.update(

Reply via email to