From 531bf9ab4c3b7639410c17d0ee628bbcdf21b423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Tue, 7 Jan 2025 17:36:50 -0300 Subject: [PATCH] Do not emit heartbeat in engineering mode --- python/lvmecp/actor/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lvmecp/actor/actor.py b/python/lvmecp/actor/actor.py index 6dd4acb..45a72a8 100644 --- a/python/lvmecp/actor/actor.py +++ b/python/lvmecp/actor/actor.py @@ -169,7 +169,7 @@ async def _run_eng_mode(self, timeout: float | None = None): assert self._engineering_mode_duration is not None while True: - await self.emit_heartbeat() + # await self.emit_heartbeat() elapsed = time.time() - self._engineering_mode_started_at