From 8f161cd3fa9305d0925cf7893f83ac28e2453bf2 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 8 Oct 2012 04:51:12 -0400 Subject: [PATCH] Prevent CPU usage from going to max due to loop buzzing. --- irkerd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irkerd b/irkerd index ca41da6..302b48a 100755 --- a/irkerd +++ b/irkerd @@ -388,7 +388,7 @@ class Irker: self.debug(1, "process_forever()") while True: with self.library_lock: - self.irc.process_once() + self.irc.process_once(ANTI_BUZZ_DELAY) def _handle_ping(self, connection, _event): "PING arrived, bump the last-received time for the connection." if connection.context: -- 2.26.2