We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9752943 commit 26d55dcCopy full SHA for 26d55dc
tools/run_server_tests.py
@@ -85,7 +85,8 @@ def generate_unique_port():
85
while True:
86
port = random.randint(1024, 9999)
87
# Exclude port 2019 (Caddy admin endpoint)
88
- if port == 2019:
+ # Exclude port 9000 (PHP-FPM default port)
89
+ if port == 2019 or port == 9000:
90
continue
91
if port not in used_ports and not is_port_in_active_use(port):
92
used_ports.add(port)
0 commit comments