ui - fix show num retries for 500 error

This commit is contained in:
Ishaan Jaff 2024-05-06 17:58:56 -07:00
parent eb5dc38fc9
commit f04f45a80d

View file

@ -93,7 +93,8 @@ const retry_policy_map: Record <string, string> = {
"AuthenticationError (401)": "AuthenticationErrorRetries",
"TimeoutError (408)": "TimeoutErrorRetries",
"RateLimitError (429)": "RateLimitErrorRetries",
"ContentPolicyViolationError (400)": "ContentPolicyViolationErrorRetries"
"ContentPolicyViolationError (400)": "ContentPolicyViolationErrorRetries",
"InternalServerError (500)": "InternalServerErrorRetries"
};