From 74b2c70602c52311fe020de19d8a5c45c6c98a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Mon, 30 Mar 2026 20:11:54 +0800 Subject: [PATCH] test(admin): cover heal alias routes (#2329) --- rustfs/src/admin/route_registration_test.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rustfs/src/admin/route_registration_test.rs b/rustfs/src/admin/route_registration_test.rs index aba836072..41002aa24 100644 --- a/rustfs/src/admin/route_registration_test.rs +++ b/rustfs/src/admin/route_registration_test.rs @@ -169,6 +169,9 @@ fn test_admin_alias_paths_match_existing_admin_routes() { (Method::PUT, compat_admin_alias_path("/v3/set-bucket-quota")), (Method::GET, compat_admin_alias_path("/v3/get-bucket-quota")), (Method::POST, compat_admin_alias_path("/v3/heal/")), + (Method::POST, compat_admin_alias_path("/v3/heal/test-bucket")), + (Method::POST, compat_admin_alias_path("/v3/heal/test-bucket/prefix")), + (Method::POST, compat_admin_alias_path("/v3/background-heal/status")), (Method::GET, compat_admin_alias_path("/v3/tier/HOT")), (Method::GET, compat_admin_alias_path("/v3/export-bucket-metadata")), (Method::PUT, compat_admin_alias_path("/v3/import-bucket-metadata")),