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 f7f0491 commit 8d07851Copy full SHA for 8d07851
1 file changed
guest-agent/src/backend.rs
@@ -52,9 +52,7 @@ impl PlatformBackend for RealPlatform {
52
let attestation = Attestation::quote(&report_data).context("Failed to get quote")?;
53
let tdx_quote = attestation.get_tdx_quote_bytes();
54
let tdx_event_log = attestation.get_tdx_event_log_string(include_hash_inputs);
55
- let event_log_ccel = attestation
56
- .get_tdx_event_log_ccel()
57
- .context("failed to build CCEL event log")?;
+ let event_log_ccel = attestation.get_tdx_event_log_ccel().unwrap_or_default();
58
Ok(GetQuoteResponse {
59
quote: tdx_quote.unwrap_or_default(),
60
event_log: tdx_event_log.unwrap_or_default(),
0 commit comments