From 50d30eeaaa8df42029dbf9cc3de021701df0f531 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 24 Aug 2021 16:35:11 +0200 Subject: [PATCH] statusip: Update every 10 minutes. --- statusip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statusip.cpp b/statusip.cpp index 04ce123..0385d9b 100644 --- a/statusip.cpp +++ b/statusip.cpp @@ -147,7 +147,7 @@ int main(int argc, char *argv[]) RestClient::disable(); std::cout << format_responses(ipv6, ipv4) << std::endl; - std::this_thread::sleep_until(clock::now() + 30min); + std::this_thread::sleep_until(clock::now() + 10min); } } catch (const std::exception &e)