feat: translate Chinese comments to English across codebase

This commit is contained in:
overtrue
2025-05-25 15:24:34 +08:00
parent d1a2f2939c
commit 9d90913697
11 changed files with 60 additions and 60 deletions
+2 -2
View File
@@ -144,7 +144,7 @@ impl S3Access for FS {
// /// + [`cx.s3_op().name()`](crate::S3Operation::name)
// /// + [`cx.extensions_mut()`](S3AccessContext::extensions_mut)
async fn check(&self, cx: &mut S3AccessContext<'_>) -> S3Result<()> {
// 上层验证了 ak/sk
// Upper layer has verified ak/sk
// info!(
// "s3 check uri: {:?}, method: {:?} path: {:?}, s3_op: {:?}, cred: {:?}, headers:{:?}",
// cx.uri(),
@@ -173,7 +173,7 @@ impl S3Access for FS {
let ext = cx.extensions_mut();
ext.insert(req_info);
// 统一在这验证?还是在下面各自验证?
// Verify uniformly here? Or verify separately below?
Ok(())
}