Skip to content

Commit

Permalink
Comprehensive List of Throttling Codes (#609)
Browse files Browse the repository at this point in the history
* Comprehensive list of AWS Throttling Error Codes

* v1.84.0
  • Loading branch information
mattBrzezinski authored Mar 22, 2023
1 parent 65399ae commit 68ef035
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AWS"
uuid = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
license = "MIT"
version = "1.83.0"
version = "1.84.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
4 changes: 4 additions & 0 deletions src/utilities/request.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,14 @@ function submit_request(aws::AbstractAWSConfig, request::Request; return_headers
"RequestThrottledException",
"TooManyRequestsException",
"ProvisionedThroughputExceededException",
"TransactionInProgressException"
"LimitExceededException",
"RequestLimitExceeded",
"BandwidthLimitExceeded",
"RequestThrottled",
"PriorRequestNotComplete",
"SlowDown",
"EC2ThrottledException",
]

request.headers["User-Agent"] = user_agent[]
Expand Down

2 comments on commit 68ef035

@mattBrzezinski
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/80116

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.84.0 -m "<description of version>" 68ef035895ae056a6431b3013f60d45a3366cfc2
git push origin v1.84.0

Please sign in to comment.