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
Either out of resource quota or reaching rate limiting.
429
TOO_MANY_REQUESTS
Either out of resource quota or reaching rate limiting.
The problem is: for different error code identical error message is used. As a result, the human readable error message do not explicitly addresses the issue while the server "knows" if which of two mentioned reasons caused the error.
Expected behavior
Explicit error messages, for example:
429
QUOTA_EXCEEDED
Out of resource quota.
429
TOO_MANY_REQUESTS
Rate limits are reached.
The text was updated successfully, but these errors were encountered:
Problem description
https://github.com/camaraproject/Commonalities/blob/main/documentation/API-design-guidelines.md#61-standardized-use-of-camara-error-responses introduces two options for error 429 - QUOTA_EXCEEDED and TOO_MANY_REQUESTS:
The problem is: for different error code identical error message is used. As a result, the human readable error message do not explicitly addresses the issue while the server "knows" if which of two mentioned reasons caused the error.
Expected behavior
Explicit error messages, for example:
The text was updated successfully, but these errors were encountered: