From e486c35faa555cc120896dae2c51c24bf1216956 Mon Sep 17 00:00:00 2001 From: girlbossceo Date: Sun, 24 Sep 2023 13:01:54 -0400 Subject: [PATCH] don't skip tracing for event_handler Signed-off-by: girlbossceo --- src/service/rooms/event_handler/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/service/rooms/event_handler/mod.rs b/src/service/rooms/event_handler/mod.rs index 846aaba9..9e2b9913 100644 --- a/src/service/rooms/event_handler/mod.rs +++ b/src/service/rooms/event_handler/mod.rs @@ -67,7 +67,6 @@ impl Service { /// 13. Use state resolution to find new room state /// 14. Check if the event passes auth based on the "current state" of the room, if not soft fail it // We use some AsyncRecursiveType hacks here so we can call this async funtion recursively - #[tracing::instrument(skip(self, value, is_timeline_event, pub_key_map))] pub(crate) async fn handle_incoming_pdu<'a>( &self, origin: &'a ServerName, @@ -276,7 +275,6 @@ impl Service { r } - #[tracing::instrument(skip(self, create_event, value, pub_key_map))] fn handle_outlier_pdu<'a>( &'a self, origin: &'a ServerName, @@ -461,7 +459,6 @@ impl Service { }) } - #[tracing::instrument(skip(self, incoming_pdu, val, create_event, pub_key_map))] pub async fn upgrade_outlier_to_timeline_pdu( &self, incoming_pdu: Arc,