fix: switch linux heartbeat ticker back to 30s

This commit is contained in:
2025-06-23 18:52:51 -05:00
parent e83de79207
commit a150c24e88

View File

@@ -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)