Skip to content

Commit

Permalink
fix(service-error-classification): remove AbortError from transient e…
Browse files Browse the repository at this point in the history
…rrors (#4895)

Co-authored-by: Ran Vaknin <[email protected]>
  • Loading branch information
RanVaknin and Ran Vaknin authored Jun 29, 2023
1 parent 0bda238 commit a812fc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/service-error-classification/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const THROTTLING_ERROR_CODES = [
/**
* Error codes that indicate transient issues
*/
export const TRANSIENT_ERROR_CODES = ["AbortError", "TimeoutError", "RequestTimeout", "RequestTimeoutException"];
export const TRANSIENT_ERROR_CODES = ["TimeoutError", "RequestTimeout", "RequestTimeoutException"];

/**
* Error codes that indicate transient issues
Expand Down

0 comments on commit a812fc8

Please sign in to comment.