You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fb watch default --poll-interval is now 30s (was 5s). The old 5-second default polled far too aggressively for large libraries where each file (especially .ncm / FLAC with L3 integrity) takes much longer than 5s to decode — every poll just hit the "previous cycle still running" guard. 30s is a saner default; override with --poll-interval as before.
Fixed
fb watch no longer spams "Previous cycle still running, skipping this poll". The skip-warning was designed to ramp to silence (one WARN, then debug, then quiet), but the counter reset at every cycle boundary — so a continuously-busy watcher (back-to-back long decodes) re-emitted the WARN on almost every poll. The ramp now persists across a sustained-busy stretch and only resets once the watcher genuinely catches up, so you see the warning once (plus the long-running hint), then quiet.