We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daac003 commit 0e1a160Copy full SHA for 0e1a160
crates/stackable-webhook/src/servers/conversion.rs
@@ -40,7 +40,7 @@ pub enum ConversionWebhookError {
40
RunWebhookServer { source: WebhookError },
41
42
#[snafu(display("failed to receive certificate from channel"))]
43
- ReceiverCertificateFromChannel,
+ ReceiveCertificateFromChannel,
44
45
#[snafu(display("failed to convert CA certificate into PEM format"))]
46
ConvertCaToPem { source: x509_cert::der::Error },
@@ -228,7 +228,7 @@ impl ConversionWebhookServer {
228
let current_cert = cert_rx
229
.recv()
230
.await
231
- .context(ReceiverCertificateFromChannelSnafu)?;
+ .context(ReceiveCertificateFromChannel)?;
232
Self::reconcile_crds(
233
&client,
234
field_manager,
0 commit comments