fix: increase action rate limit for drag updates in maplibre example #17
Reference in New Issue
Block a user
Delete Branch "worktree-drag-rate-limit"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The live drag writeback fires at ~60Hz via
requestAnimationFrame, but the default context-level rate limit is 10 req/s (burst 20). This caused 429 responses and choppy cross-client sync during pin drags.Raise the example app's
ActionRateLimitto 60 req/s (burst 120) to accommodate rAF-rate drag updates.