diff --git a/rust/connlib/snownet/src/allocation.rs b/rust/connlib/snownet/src/allocation.rs index 01eb9a583..17db4c50b 100644 --- a/rust/connlib/snownet/src/allocation.rs +++ b/rust/connlib/snownet/src/allocation.rs @@ -1103,7 +1103,9 @@ impl Allocation { #[cfg(not(test))] fn check_message_integrity(&self, message: &Message) -> bool { let Some(mi) = message.get_attribute::() else { - tracing::debug!("Message does not have a `MessageIntegrity` attribute"); + if message.method() != BINDING { + tracing::debug!("Message does not have a `MessageIntegrity` attribute"); + } return false; };