Skip to content

Commit

Permalink
chore: small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank-III committed Dec 10, 2024
1 parent 2b02ce5 commit 35da6f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/services/obs/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
// specific language governing permissions and limitations
// under the License.

use std::collections::HashMap;
use std::fmt::Debug;
use std::fmt::Formatter;
use std::sync::Arc;
Expand Down Expand Up @@ -314,7 +315,7 @@ impl Access for ObsBackend {
// The response is very similar to azblob.
match status {
StatusCode::OK => {
let mut meta = parse_into_metadata(path, headers);
let mut meta = parse_into_metadata(path, headers)?;
let user_meta = headers
.iter()
.filter_map(|(name, _)| {
Expand Down

0 comments on commit 35da6f7

Please sign in to comment.