Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support request, read, data, and write timeouts #12

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ d.meta((err, metadata) => {
* `options` `<Object>`
* `partSizeInMegabytes` `<number>` (optional, defaults to uploaded part size)
* `concurrency` `<number>`
* `connectionTimeoutInMilliseconds` `<number>` (optional, defaults to 3000)
* `requestTimeoutInMilliseconds` `<number>` Maxium time for a request to complete from start to finish (optional, defaults to 300,000, 0 := no timeout)
* `connectionTimeoutInMilliseconds` `<number>` Maximum time for a socket to connect (optional, defaults to 3,000, 0 := no timeout)
* `readTimeoutInMilliseconds` `<number>` Maxium time to read the response body (optional, defaults to 300,000, 0 := no timeout)
* `dataTimeoutInMilliseconds` `<number>` Maxium time between two data events while reading the response body (optional, defaults to 3,000, 0 := no timeout)
* `writeTimeoutInMilliseconds` `<number>` Maxium time to write the request body (optional, defaults to 300,000, 0 := no timeout)
* `v2AwsSdkCredentials` `<AWS.Credentials>` (optional)
* `endpointHostname` `<string>` (optional, defaults to s3.${region}.amazonaws.com)
* `agent` `<https.Agent>` (optional)
Expand Down
Loading