mirror of
https://github.com/apple/container.git
synced 2026-07-12 04:27:05 +00:00
0b6c79f3d3
- `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.