Merge branch 'next-v2' into 1686a/s3-redirects

This commit is contained in:
Alex Auvolat
2025-02-14 13:03:11 +01:00
52 changed files with 6646 additions and 3784 deletions
+3 -2
View File
@@ -1,3 +1,4 @@
use std::borrow::Cow;
use std::sync::Arc;
use hyper::header;
@@ -353,8 +354,8 @@ impl ApiHandler for S3ApiServer {
}
impl ApiEndpoint for S3ApiEndpoint {
fn name(&self) -> &'static str {
self.endpoint.name()
fn name(&self) -> Cow<'static, str> {
Cow::Borrowed(self.endpoint.name())
}
fn add_span_attributes(&self, span: SpanRef<'_>) {