Skip to content

Commit c4a5835

Browse files
committed
revert unintended capitalization change in bail message
1 parent cfc0d55 commit c4a5835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kms/src/main_service/upgrade_authority.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl AuthApi {
8686
let url = url_join(&webhook.url, path);
8787
let response = client.post(&url).json(&boot_info).send().await?;
8888
if !response.status().is_success() {
89-
bail!("failed to check boot auth: {}", response.text().await?);
89+
bail!("Failed to check boot auth: {}", response.text().await?);
9090
}
9191
Ok(response.json().await?)
9292
}

0 commit comments

Comments
 (0)