Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/stackable-webhook/src/webhooks/conversion_webhook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl<H> ConversionWebhook<H> {
}

#[instrument(
skip(self, crd, crd_api),
skip(self, crd, crd_api, new_ca_bundle),
fields(
name = crd.name_any(),
kind = &crd.spec.names.kind
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-webhook/src/webhooks/mutating_webhook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading