Skip to content

Commit

Permalink
fix: correct HTTP status code values (#1101)
Browse files Browse the repository at this point in the history
* fix: correct HTTP status code values
  • Loading branch information
jkaster authored Jun 24, 2022
1 parent 88bb83f commit 3d0f902
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/sdk-rtl/src/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ export enum StatusCode {
FailedDependency,
TooEarly,
UpgradeRequired,
PreconditionRequired,
PreconditionRequired = 428,
TooManyRequests,
RequestHeaderFieldsTooLarge,
UnavailableForLegalReasons,
RequestHeaderFieldsTooLarge = 431,
UnavailableForLegalReasons = 451,
InternalServerError = 500,
NotImplemented,
BadGateway,
Expand Down

0 comments on commit 3d0f902

Please sign in to comment.