Skip to content

Commit

Permalink
fix: bucket creation failure should result in the server failing, ins…
Browse files Browse the repository at this point in the history
…tead of proceeding
  • Loading branch information
khorshuheng committed Jan 18, 2025
1 parent ab9932a commit 6eded0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ async fn create_bucket_if_not_exists(
}
} else {
error!("Failed to create bucket: {:?}", err);
Ok(())
Err(err.into())
}
},
}
Expand Down

0 comments on commit 6eded0f

Please sign in to comment.