From e347f895b81e663364f1bdfda2c07ead95287c29 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Mon, 1 Sep 2025 09:44:39 -0700 Subject: [PATCH] add sleep at end of online notificaiton loop --- controller/CentralDB.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controller/CentralDB.cpp b/controller/CentralDB.cpp index 29b388c3b..1b1e4d554 100644 --- a/controller/CentralDB.cpp +++ b/controller/CentralDB.cpp @@ -1498,6 +1498,8 @@ void CentralDB::onlineNotificationThread() catch (std::exception& e) { fprintf(stderr, "%s: error in onlinenotification thread: %s\n", _myAddressStr.c_str(), e.what()); } + + std::this_thread::sleep_for(std::chrono::seconds(10)); } }