From 9129fb240ae718212ff755199c61c9ecb500d471 Mon Sep 17 00:00:00 2001 From: John McCann Cunniff Jr Date: Sun, 10 Sep 2023 20:52:55 -0400 Subject: [PATCH] CHG update polling rate of infra warn job --- api/anubis/jobs/infra_poller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/anubis/jobs/infra_poller.py b/api/anubis/jobs/infra_poller.py index bd645f42..5e87901f 100644 --- a/api/anubis/jobs/infra_poller.py +++ b/api/anubis/jobs/infra_poller.py @@ -10,7 +10,7 @@ def main(): while True: check_cluster_ides() - time.sleep(1) + time.sleep(15) if __name__ == "__main__":