Added guard clause to prevent multiple tunnel creations

This commit is contained in:
Nathanael Santoso 2023-04-04 06:50:29 +00:00
parent 22bcc7be42
commit 5ebe3b2504

View File

@ -1,6 +1,14 @@
from pyngrok import ngrok, conf, exception from pyngrok import ngrok, conf, exception
def connect(token, port, region): def connect(token, port, region):
# Guard for existing tunnels
existing = ngrok.get_tunnels()
if existing:
public_url = existing[0].public_url
print(f'ngrok connected to localhost:{port}! URL: {public_url}\n'
'You can use this link after the launch is complete.')
return
account = None account = None
if token is None: if token is None:
token = 'None' token = 'None'