Summary
Implement retry logic to mitigate timeout errors, which may be caused by network connectivity issues.
Description
- Performing remote attestation using IAS
- Call to https://api.trustedservices.intel.com/sgx/attestation/v4/sigrl/00000c13 resulted in error: operation timed out
- Is there a rate limit enforced on the service or a way to mitigate this issue?
Resolution
- An operation timed out error suggests a network connectivity issue on the client side.
- There is no rate limiting imposed on the attestation API. Rate limiting would result in HTTP error code 429, not timeout.
- One possible mitigation against this issue is to implement retry logic in your code.