diff --git a/crates/stackable-webhook/src/webhooks/conversion_webhook.rs b/crates/stackable-webhook/src/webhooks/conversion_webhook.rs index 0e779ee4e..c0f11b7d0 100644 --- a/crates/stackable-webhook/src/webhooks/conversion_webhook.rs +++ b/crates/stackable-webhook/src/webhooks/conversion_webhook.rs @@ -135,7 +135,7 @@ impl ConversionWebhook { } #[instrument( - skip(self, crd, crd_api), + skip(self, crd, crd_api, new_ca_bundle), fields( name = crd.name_any(), kind = &crd.spec.names.kind @@ -244,7 +244,7 @@ where self.options.disable_crd_maintenance } - #[instrument(skip(self))] + #[instrument(skip(self, new_ca_bundle))] async fn handle_certificate_rotation( &mut self, new_ca_bundle: &ByteString, diff --git a/crates/stackable-webhook/src/webhooks/mutating_webhook.rs b/crates/stackable-webhook/src/webhooks/mutating_webhook.rs index a214356c7..1beb12cde 100644 --- a/crates/stackable-webhook/src/webhooks/mutating_webhook.rs +++ b/crates/stackable-webhook/src/webhooks/mutating_webhook.rs @@ -206,7 +206,7 @@ where self.options.disable_mwc_maintenance } - #[instrument(skip(self))] + #[instrument(skip(self, new_ca_bundle))] async fn handle_certificate_rotation( &mut self, new_ca_bundle: &ByteString,