From 6617372b33c76134597aa43c4aacc20d05af7723 Mon Sep 17 00:00:00 2001 From: weisd Date: Mon, 3 Nov 2025 18:23:16 +0800 Subject: [PATCH] fix rmdir versionid (#784) --- 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 413cf6d3..91a10845 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -1342,7 +1342,7 @@ impl S3 for FS { } if is_dir_object(&object.object_name) && object.version_id.is_none() { - object.version_id = Some(Uuid::nil()); + object.version_id = Some(Uuid::max()); } if replicate_deletes {