From 0c02f0de50d6684ca92d3229d9bfd0702552fb0b Mon Sep 17 00:00:00 2001 From: Marius Mutu Date: Thu, 23 Apr 2026 19:59:11 +0000 Subject: [PATCH] fix(scheduler): suppress channel send when result is HEARTBEAT_OK Co-Authored-By: Claude Sonnet 4.6 --- src/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scheduler.py b/src/scheduler.py index a4b1c09..35938cb 100644 --- a/src/scheduler.py +++ b/src/scheduler.py @@ -374,7 +374,7 @@ class Scheduler: self._save_jobs() # Send output via callback if we have something to send - if result_text and self._send_callback: + if result_text and "HEARTBEAT_OK" not in result_text and self._send_callback: try: await self._send_callback(job["channel"], result_text) except Exception as exc: