From c9f15a3f1ce964db34ff9aa8ab63b2bfe9620cdc Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Sat, 9 May 2026 12:14:47 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20grace=20comment=20in=20config?= =?UTF-8?q?=20defaults=20=E2=80=94=20additional=20wait=20time,=20not=20a?= =?UTF-8?q?=20multiplier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hbd/server/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbd/server/config.py b/hbd/server/config.py index 5d1d5cf..7bb3d2e 100644 --- a/hbd/server/config.py +++ b/hbd/server/config.py @@ -27,7 +27,7 @@ SERVER_DEFAULTS = { # Monitoring settings "interval": 20, # Expected heartbeat interval (for server checks) - "grace": 2, # Grace multiplier (interval * grace = timeout) + "grace": 2, # Grace period (extra seconds before notifying after a missed heartbeat) "threshold_renotify_interval": 3600, # Seconds between threshold re-notifications # User management