The check for the attestation report version is causing an error in the verifier due to a recent update changing the version and structure of the attestation report. A stakeholder from the confidential community brought up this concern.
ERROR kbs::http::error] Attestation failed: Verifier evaluate failed: Unexpected report version
There are 2 proposals to fix this issue:
Skip the check for the report version
Change the check from report.version != 2 to report.version != 3 or report.version >= 2
The check for the attestation report version is causing an error in the verifier due to a recent update changing the version and structure of the attestation report. A stakeholder from the confidential community brought up this concern.
There are 2 proposals to fix this issue:
report.version != 2
toreport.version != 3
orreport.version >= 2