masaori335 opened a new pull request, #12402: URL: https://github.com/apache/trafficserver/pull/12402
Mitigation of https://github.com/apache/trafficserver/issues/12401. It looks like every Remap ACL test uses 6 listening ports. However, it looks like ssl and pp are not necessary in many tests. Before ``` $ grep "server_ports" /tmp/sandbox/remap_acl/ts-*/config/records.yaml /tmp/sandbox/remap_acl/ts-0/config/records.yaml: server_ports: 61015 61016:ipv6 61017:ssl 61018:ssl:ipv6 61019:pp 61020:pp:ipv6 /tmp/sandbox/remap_acl/ts-1/config/records.yaml: server_ports: 61028 61029:ipv6 61030:ssl 61031:ssl:ipv6 61032:pp 61033:pp:ipv6 /tmp/sandbox/remap_acl/ts-10/config/records.yaml: server_ports: 61155 61156:ipv6 61157:ssl 61158:ssl:ipv6 61159:pp 61160:pp:ipv6 ... ``` After ``` $ grep "server_ports" /tmp/sandbox/remap_acl/ts-*/config/records.yaml /tmp/sandbox/remap_acl/ts-0/config/records.yaml: server_ports: 61015 61016:ipv6 /tmp/sandbox/remap_acl/ts-1/config/records.yaml: server_ports: 61022 61023:ipv6 61024:pp 61025:pp:ipv6 /tmp/sandbox/remap_acl/ts-10/config/records.yaml: server_ports: 61097 61098:ipv6 /tmp/sandbox/remap_acl/ts-100/config/records.yaml: server_ports: 61727 61728:ipv6 ... ``` -- 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]
