From d3cc054b03c58cc89655fd9015d4bffa462a0532 Mon Sep 17 00:00:00 2001 From: Timothy Miller Date: Fri, 5 Mar 2021 23:11:00 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=B9=20Prevent=20rate=20limiting=20by?= =?UTF-8?q?=20increasing=20sync=20frequency=20to=2015=20minutes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloudflare-ddns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudflare-ddns.py b/cloudflare-ddns.py index c8d40c0..9db4925 100755 --- a/cloudflare-ddns.py +++ b/cloudflare-ddns.py @@ -158,8 +158,8 @@ def updateIPs(): if __name__ == '__main__': if(len(sys.argv) > 1): if(sys.argv[1] == "--repeat"): - delay = 5*60 - print("⏲️ Updating IPv4 (A) & IPv6 (AAAA) records every 5 minutes") + delay = 15*60 + print("⏲️ Updating IPv4 (A) & IPv6 (AAAA) records every 15 minutes") next_time = time.time() killer = GracefulExit() while not killer.kill_now: