Remove redundant span attributes

There's no need to record attributes that are already present in all
callers.
This commit is contained in:
Lambda 2024-05-24 16:18:10 +00:00 committed by Charles Hall
parent f35cbfd89e
commit 88bb2ea600
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 5 additions and 8 deletions

View file

@ -361,7 +361,7 @@ fn add_port_to_hostname(destination_str: &str) -> FedDest {
/// Numbers in comments below refer to bullet points in linked section of
/// specification
#[allow(clippy::too_many_lines)]
#[tracing::instrument(ret(level = "debug"))]
#[tracing::instrument(skip(destination), ret(level = "debug"))]
async fn find_actual_destination(
destination: &'_ ServerName,
) -> (FedDest, FedDest) {