Skip to content

Commit 26d55dc

Browse files
committed
.
1 parent 9752943 commit 26d55dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/run_server_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ def generate_unique_port():
8585
while True:
8686
port = random.randint(1024, 9999)
8787
# Exclude port 2019 (Caddy admin endpoint)
88-
if port == 2019:
88+
# Exclude port 9000 (PHP-FPM default port)
89+
if port == 2019 or port == 9000:
8990
continue
9091
if port not in used_ports and not is_port_in_active_use(port):
9192
used_ports.add(port)

0 commit comments

Comments
 (0)