mirror of
https://github.com/apple/container.git
synced 2026-07-23 01:41:34 +00:00
- `SystemStart` used `try!` when creating the apiserver data directory. File system operations can fail for legitimate reasons: insufficient permissions, disk full, read-only volume. Crashing the process in these cases gives the user no actionable error message. - Replaced with `try` so the error propagates up and is surfaced cleanly.