From 7f631ec3785caea460d49f70dcb1fb9a4560b8be Mon Sep 17 00:00:00 2001 From: overtrue Date: Sun, 6 Sep 2026 10:01:20 +0800 Subject: [PATCH] test(rpc): mark instance regression request as v2 authenticated --- rustfs/src/storage/rpc/node_service.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rustfs/src/storage/rpc/node_service.rs b/rustfs/src/storage/rpc/node_service.rs index a624d5388..6b3596390 100644 --- a/rustfs/src/storage/rpc/node_service.rs +++ b/rustfs/src/storage/rpc/node_service.rs @@ -4760,6 +4760,7 @@ mod tests { }); let body = rustfs_protos::canonical_rename_data_request_body(request.get_ref()).expect("canonical rename body"); set_tonic_canonical_body_digest(&mut request, &body).expect("body-bound handler request"); + mark_v2_authenticated(&mut request); let response = super::timeout(Duration::from_secs(10), service.rename_data(request)) .await .expect("real rename handler must finish within ten seconds")