Skip to content
Closed
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": "a82031b", "specHash": "d0976fc", "version": "10.9.0" }
{ "engineHash": "18868e7", "specHash": "d0976fc", "version": "10.9.0" }
1 change: 1 addition & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ How timeout handling works:

- `connectionTimeoutMs` controls how long the client waits to establish a connection.
- `readTimeoutMs` controls how long the client waits for data while reading the response.
- If timeout config is not provided, the SDK uses the OkHttp default timeout settings: connect timeout of 10 seconds, read timeout of 10 seconds, and write timeout of 10 seconds.
- Each timeout is optional. If a value is not provided, the client keeps its existing timeout for that setting.
- To disable both timeouts, set `connectionTimeoutMs(0L)` and `readTimeoutMs(0L)`.
- You can also disable only one timeout by setting just one of them to `0L` and leaving the other configured.
Expand Down
Loading