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 |
Beta Was this translation helpful? Give feedback.
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)
) |
Beta Was this translation helpful? Give feedback.
Yes that'll be a timeout. You can get around that by setting the timeout when initializing the AWS service.