Skip to content

Commit 9d687ce

Browse files
committed
chore(webhook): Also hide the ByteString in the rotation handlers
1 parent fd2154f commit 9d687ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/stackable-webhook/src/webhooks/conversion_webhook.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ where
244244
self.options.disable_crd_maintenance
245245
}
246246

247-
#[instrument(skip(self))]
247+
#[instrument(skip(self, new_ca_bundle))]
248248
async fn handle_certificate_rotation(
249249
&mut self,
250250
new_ca_bundle: &ByteString,

crates/stackable-webhook/src/webhooks/mutating_webhook.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ where
206206
self.options.disable_mwc_maintenance
207207
}
208208

209-
#[instrument(skip(self))]
209+
#[instrument(skip(self, new_ca_bundle))]
210210
async fn handle_certificate_rotation(
211211
&mut self,
212212
new_ca_bundle: &ByteString,

0 commit comments

Comments
 (0)