Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
oobabooga 2023-08-17 11:38:29 -07:00
commit eaf5f0f089

View File

@ -99,7 +99,10 @@ def _start_cloudflared(port: int, tunnel_id: str, max_attempts: int = 3, on_star
for _ in range(max_attempts):
try:
public_url = _run_cloudflared(port, port + 1, tunnel_id=tunnel_id)
if tunnel_id is not None:
public_url = _run_cloudflared(port, port + 1, tunnel_id=tunnel_id)
else:
public_url = _run_cloudflared(port, port + 1)
if on_start:
on_start(public_url)