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 0da31a1 commit f8ea3daCopy full SHA for f8ea3da
sigstore/verify/verifier.py
@@ -140,7 +140,8 @@ def _verify_signed_timestamp(
140
141
verifier = builder.build()
142
try:
143
- verifier.verify_message(timestamp_response, message)
+ # TODO: remove ignore after rfc3161-client upgrade
144
+ verifier.verify_message(timestamp_response, message) # type: ignore[attr-defined]
145
except Rfc3161VerificationError as e:
146
_logger.debug("Unable to verify Timestamp with CA.")
147
_logger.exception(e)
0 commit comments