From a150c24e88daf285da31155c237c9ead589865bd Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 23 Jun 2025 18:52:51 -0500 Subject: [PATCH] fix: switch linux heartbeat ticker back to 30s --- internal/service/linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/linux.go b/internal/service/linux.go index febf641..58c6064 100644 --- a/internal/service/linux.go +++ b/internal/service/linux.go @@ -55,7 +55,7 @@ func (s *linuxService) Run() error { }() // Setup heartbeat to systemd - heartbeat := time.NewTicker(2 * time.Second) + heartbeat := time.NewTicker(30 * time.Second) defer heartbeat.Stop() // Start the service (backgrounded so that the service can still respond to systemd signals, the app layer is still designed for concurrency)