fixes error when not specifying tunnel id (#3606)

This commit is contained in:
ausboss 2023-08-17 13:20:36 -05:00 committed by GitHub
parent bdb6eb5734
commit a954b3e7de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)