We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfc0d55 commit c4a5835Copy full SHA for c4a5835
kms/src/main_service/upgrade_authority.rs
@@ -86,7 +86,7 @@ impl AuthApi {
86
let url = url_join(&webhook.url, path);
87
let response = client.post(&url).json(&boot_info).send().await?;
88
if !response.status().is_success() {
89
- bail!("failed to check boot auth: {}", response.text().await?);
+ bail!("Failed to check boot auth: {}", response.text().await?);
90
}
91
Ok(response.json().await?)
92
0 commit comments