fix: replace permanent watchdog halt with self-healing cooldown#74
Merged
fix: replace permanent watchdog halt with self-healing cooldown#74
Conversation
The tunnel watchdog circuit breaker permanently halted after 5 restarts, leaving the tunnel disconnected forever. Replace with exponential backoff cooldown (5min → 10min → 20min → 30min cap) that automatically resumes monitoring. Add process liveness fast-path to detect dead cloudflared immediately. Reset cooldown count on successful recovery.
🔔 Push Browser E2E Test RecordingRun #22023115548 | Commit f57dcd3 |
🎥 Browser E2E Test RecordingRun #22023115548 | Commit f57dcd3 |
⚙️ Settings E2E Test RecordingRun #22023115548 | Commit f57dcd3 |
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
halted = true) after 5 restarts within 10 minutes, leaving the tunnel disconnected forever with no recovery paththis.processis null or killed, immediately trigger restart without waiting for 3 metric check failuresopencode-manager statusnow shows watchdog cooldown state and remaining time when in cooldownFiles Changed
backend/src/services/tunnel-service.ts— Core watchdog logic: cooldown constants, extended TunnelStatus interface, self-healingstartWatchdog()methodbin/cli.ts— ExtendedTunnelStatusResponsetype and added cooldown display incommandHealth()outputTesting Done
pnpm buildpnpm testCloses #73