From fd0fca436b1d07753ae100af67eec111b7027c4c Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Wed, 5 Mar 2025 13:30:05 +0100 Subject: [PATCH] chore(sdk): Remove the `request_body` instrument's field. Many fields here are not argument of the `send` method, but are set later with `Span::record`. Grepping all these fields reveal they are all set except `request_body` apparently. --- crates/matrix-sdk/src/http_client/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/matrix-sdk/src/http_client/mod.rs b/crates/matrix-sdk/src/http_client/mod.rs index eb3b940d9..5a28c8b44 100644 --- a/crates/matrix-sdk/src/http_client/mod.rs +++ b/crates/matrix-sdk/src/http_client/mod.rs @@ -140,7 +140,6 @@ impl HttpClient { uri, method, request_size, - request_body, request_id, status, response_size,