fix print statement
This commit is contained in:
parent
c71bb5babf
commit
9996df0934
@ -30,7 +30,7 @@ async def _announce_server(**kwargs):
|
|||||||
break
|
break
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
print("Failed to connect to host, retrying in 5 seconds")
|
print(f"Failed to connect to host, retrying in {RETRY_INTERVAL} seconds")
|
||||||
await asyncio.sleep(RETRY_INTERVAL)
|
await asyncio.sleep(RETRY_INTERVAL)
|
||||||
# await sio.connect(f'http://{HOST_SERVER_IP}:{HOST_SERVER_PORT}')
|
# await sio.connect(f'http://{HOST_SERVER_IP}:{HOST_SERVER_PORT}')
|
||||||
print("Connected to host")
|
print("Connected to host")
|
||||||
|
Loading…
Reference in New Issue
Block a user