From 45bbd1e5c4b8efc389d02ef231fb957baedeb4f2 Mon Sep 17 00:00:00 2001 From: 0xdx2 Date: Thu, 31 Jul 2025 11:20:10 +0800 Subject: [PATCH] Add etag to get object response Add etag to get object response --- rustfs/src/storage/ecfs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index 8281efe8..15a35d0a 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -983,6 +983,7 @@ impl S3 for FS { content_type, accept_ranges: Some("bytes".to_string()), content_range, + e_tag: info.etag, ..Default::default() };