From f828a1d5d1d93d9f068da3e26ba5cc3f6fb4abf9 Mon Sep 17 00:00:00 2001 From: Re-bin Date: Tue, 24 Feb 2026 12:09:19 +0000 Subject: [PATCH] fix(gateway): show actual heartbeat interval in startup log --- nanobot/cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index ca71694..1c20b50 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -403,7 +403,7 @@ def gateway( if cron_status["jobs"] > 0: console.print(f"[green]✓[/green] Cron: {cron_status['jobs']} scheduled jobs") - console.print(f"[green]✓[/green] Heartbeat: every 30m") + console.print(f"[green]✓[/green] Heartbeat: every {hb_cfg.interval_s}s") async def run(): try: