mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +00:00
1f8a5bc095
fix(ecstore): replace unwrap() with proper error handling in api_get_object_attributes Replace unsafe unwrap() calls with proper error handling in api_get_object_attributes.rs: - HTTP header access now uses ok_or_else with descriptive messages - String parsing now uses map_err with descriptive messages - HeaderValue creation now uses expect with descriptive messages Refs https://github.com/rustfs/backlog/issues/729