What is HTTPClientError.deadlineExceeded when uploading? #719
|
This little app I'm working on generally works well, but I've only ever used it from home, where the internet is okay. I'm now using it from another location where the internet upload is like 5 MB, and I'm getting |
Answered by
adam-fowler
Jun 1, 2024
Replies: 1 comment 2 replies
|
Yes that'll be a timeout. You can get around that by setting the timeout when initializing the AWS service. let s3 = S3(
client: client,
timeout: .minutes(5)
) |
2 replies
Answer selected by
JetForMe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes that'll be a timeout. You can get around that by setting the timeout when initializing the AWS service.