From 825e9e75abc22c3cdd25e4b35d3f08c8345b363f Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 17 Nov 2025 21:56:21 +0000 Subject: [PATCH] Speed up proxy self-heal reconciliation --- scripts/install-sensor-proxy.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/install-sensor-proxy.sh b/scripts/install-sensor-proxy.sh index 26cfcb413..8c68353d6 100755 --- a/scripts/install-sensor-proxy.sh +++ b/scripts/install-sensor-proxy.sh @@ -2905,8 +2905,8 @@ cat > "$SELFHEAL_TIMER_UNIT" <<'EOF' Description=Ensure pulse-sensor-proxy stays installed and running [Timer] -OnBootSec=5min -OnUnitActiveSec=30min +OnBootSec=2min +OnUnitActiveSec=5min Unit=pulse-sensor-proxy-selfheal.service [Install] @@ -2915,6 +2915,7 @@ EOF systemctl daemon-reload systemctl enable --now pulse-sensor-proxy-selfheal.timer >/dev/null 2>&1 || true +systemctl start pulse-sensor-proxy-selfheal.service >/dev/null 2>&1 || true if [ "$QUIET" = true ]; then print_success "pulse-sensor-proxy installed and running"