From 0477e8d3edc350547fb1d9ad2808783a13f1e4ea Mon Sep 17 00:00:00 2001 From: weisd Date: Tue, 13 May 2025 09:28:22 +0800 Subject: [PATCH] Update rustfs/src/storage/ecfs.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- rustfs/src/storage/ecfs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index e547b87ae..8dd209a62 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -2055,7 +2055,7 @@ impl S3 for FS { }; store.put_object_metadata(&bucket, &key, &popts).await.map_err(|e| { - error!("get_object_info failed, {}", e.to_string()); + error!("put_object_metadata failed, {}", e.to_string()); s3_error!(InternalError, "{}", e.to_string()) })?;