You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently parse_signature_data and verify_sig_pubkey return Option instead of Result. That was written for simplicity. But we are seeing more cases where clearer error handling with Result is needed.
/cc @wrl
the dummy signature error is printed too prominently, we skip over it but it looks like the program crashed if you don't pay attention to the last line
Parsed and verified signature data from file "/var/tmp/outdir/.unverified/oem-ami.gz"
which indicates that it was successful.
(suggested by @pothos)
The text was updated successfully, but these errors were encountered:
Currently
parse_signature_data
andverify_sig_pubkey
returnOption
instead ofResult
. That was written for simplicity. But we are seeing more cases where clearer error handling with Result is needed./cc @wrl
the dummy signature error is printed too prominently, we skip over it but it looks like the program crashed if you don't pay attention to the last line
which indicates that it was successful.
(suggested by @pothos)
The text was updated successfully, but these errors were encountered: