Skip to content

Commit

Permalink
fixup! Revert "attestation-handler: accept CONFIGURATION_NEEDED SGX s…
Browse files Browse the repository at this point in the history
…tatus as well"
  • Loading branch information
OverOrion committed Apr 26, 2023
1 parent 55c36c8 commit cf96d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core-primitives/attestation-handler/src/cert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ where
debug!("isvEnclaveQuoteStatus = {}", quote_status);
match quote_status.as_ref() {
"OK" => (),
"SW_HARDENING_NEEDED" => (info!("Status in attestation report is SW_HARDENING_NEEDED, which is considered acceptable.")),
"SW_HARDENING_NEEDED" => info!("Status in attestation report is SW_HARDENING_NEEDED, which is considered acceptable."),
"GROUP_OUT_OF_DATE" | "GROUP_REVOKED" | "CONFIGURATION_NEEDED" => {
// Verify platformInfoBlob for further info if status not OK
if let Value::String(pib) = &attn_report["platformInfoBlob"] {
Expand Down

0 comments on commit cf96d86

Please sign in to comment.