From 04263782eb0925d98b2af7c5329b24dc39041333 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Fri, 18 Oct 2024 01:46:52 -0400 Subject: [PATCH] rm concurrency --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 62c8208..757e1ee 100644 --- a/main.go +++ b/main.go @@ -27,8 +27,8 @@ const ripestatBase = "https://stat.ripe.net" func updateStates() { log.Debug().Msg("Updating Prefixes") for _, prefix := range monitorState { - go prefix.checkVisState() - go prefix.checkLGState() + prefix.checkVisState() + prefix.checkLGState() } }