fix: Reduce status checks to every 5 minutes
All checks were successful
Build Docker / BuildImage (push) Successful in 33s

This commit is contained in:
Nathan Woodburn 2024-09-12 20:50:04 +10:00
parent 73872af548
commit 8a43526aab
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -32,7 +32,7 @@ def check():
def run_scheduler(stop_event): def run_scheduler(stop_event):
schedule.every(1).minutes.do(check) schedule.every(5).minutes.do(check)
while not stop_event.is_set(): while not stop_event.is_set():
schedule.run_pending() schedule.run_pending()
time.sleep(1) time.sleep(1)