Commit b98fed89 authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

fix bug with automatic port choice

parent 1c11cf1a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ def start(
):
    basex_port = _closer_free_port_to(basex_port)
    http_port = _closer_free_port_to(http_port)
    if http_stop_port < http_port:
    if http_stop_port <= http_port:
        http_stop_port = http_port + 1
    http_stop_port = _closer_free_port_to(http_stop_port)
    check_cwd_is_max()