fix: revert heartbeat_interval change breaking docket worker (#669)

The 30s heartbeat_interval added in #653 broke background task execution.
Likes scheduled since Dec 29 deploy have null atproto_like_uri.

Reverts the Docket heartbeat_interval back to default (2s).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>

authored by zzstoatzz.io Claude Opus 4.5 and committed by GitHub f90e2e5a a3063381

Changed files
-3
backend
src
backend
_internal
-3
backend/src/backend/_internal/background.py
··· 58 58 async with Docket( 59 59 name=settings.docket.name, 60 60 url=settings.docket.url, 61 - # default 2s is for systems needing fast worker failure detection 62 - # with our 5-minute perpetual task, 30s is plenty responsive 63 - heartbeat_interval=timedelta(seconds=30), 64 61 ) as docket: 65 62 _docket = docket 66 63