Skip to content
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
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "450fb53", "specHash": "d0976fc", "version": "4.7.0" }
{ "engineHash": "18868e7", "specHash": "d0976fc", "version": "4.7.0" }
1 change: 1 addition & 0 deletions docs/sdk-gen/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ const client = new BoxClient({ auth, networkSession });

How timeout handling works:

- The SDK does not apply any timeout by default. Without explicit configuration, requests will wait indefinitely for a response.
- The SDK applies timeout only when `timeoutMs` is provided and greater than `0`.
- To disable SDK timeout handling, set `timeoutMs` to `0` (or a negative value), or omit `timeoutMs`.
- On timeout, the request is aborted and treated as a network error (`Connection timeout after <timeoutMs>ms`); if retries are exhausted, the SDK throws `BoxSdkError`.
Expand Down
Loading