Follow Discord
Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.267 ·

Hooks-worker heartbeat watchdog now tolerates multiple missed beats

The hooks worker watchdog now waits for several missed heartbeats before declaring it stuck, not just one

TierYou'll noticehow much it should matter to you
Useful2my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaHookswhat it touches
KindImprovementsin v2.1.267,
You'll notice

The hooks worker watchdog now waits for several missed heartbeats before declaring it stuck, not just one

What

Claude Code runs hooks (custom scripts that run at certain points, like before or after a tool call) in a separate worker process. A background daemon checks that this worker is still alive by sending it periodic heartbeat pings and waiting for a response. Previously, a single unanswered ping (based on how much time had passed) was enough to declare the worker wedged. Now the daemon counts consecutive missed heartbeats and only declares the worker stuck once that count crosses a threshold.

Why

A hook that briefly spins without yielding could previously trip the watchdog on one slow beat and get flagged as wedged even though it was still working. Tolerating multiple missed beats reduces false positives while still catching a genuinely stuck hooks worker.

See this entry in the whole of v2.1.267 →

Feedback