From 3a79fcfe73f6bcc24f7ee667cdedd516524e20ba Mon Sep 17 00:00:00 2001 From: "shiro.lee" <69624924+shiroleeee@users.noreply.github.com> Date: Thu, 4 Dec 2025 22:26:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20add=20the=20is=5Ftruncated=20field=20to?= =?UTF-8?q?=20the=20return=20of=20the=20list=5Fobject=5Fvers=E2=80=A6=20(#?= =?UTF-8?q?985)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 7b779b6e..03e37c5a 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -2773,7 +2773,7 @@ impl S3 for FS { .collect::>(); let output = ListObjectVersionsOutput { - // is_truncated: Some(object_infos.is_truncated), + is_truncated: Some(object_infos.is_truncated), max_keys: Some(key_count), delimiter, name: Some(bucket),