Commits
Click on a commit to change the comparison rangeChange default concurrency lease storage to filesystem
The in-memory storage is unsafe for production as lease state is lost
on server restart, breaking concurrency limits. This changes the default
to filesystem-based storage which persists across restarts.
Changes:
- Update PREFECT_SERVER_CONCURRENCY_LEASE_STORAGE default from memory to filesystem
- Configure test suite to use memory storage for test isolation
Memory storage remains available for explicit opt-in (development/testing).
Tests: All 361 concurrency tests pass Fix pre-commit formatting issues
- Sort imports alphabetically
- Apply ruff formatting