Removed redundant code + reduced check interval to 5 minutes

This commit is contained in:
Vlad R 2024-11-11 09:52:23 +00:00
parent 3237a1c189
commit 4b52de88ae

View File

@ -16,9 +16,6 @@ MY_IP_URL = "http://ifconfig.me"
domains = [DDNS_NC_URL, DDNS_WG_URL, DDNS_CR_URL, DDNS_GT_URL]
current_ip = requests.get(MY_IP_URL, timeout=15).text
registered_ip = socket.gethostbyname(GT_HOST)
while True:
try:
current_ip = requests.get(MY_IP_URL, timeout=15).text
@ -39,5 +36,5 @@ while True:
else:
print(f"No IP change detected (currently {current_ip}).")
finally:
print("Sleeping 10 minutes...")
sleep(1200)
print("Sleeping 5 minutes...")
sleep(300)