diff --git a/.codegen.json b/.codegen.json index d0b124df6..9c5a11f97 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "a82031b", "specHash": "d0976fc", "version": "10.9.0" } +{ "engineHash": "18868e7", "specHash": "f899bf6", "version": "10.9.0" } diff --git a/docs/configuration.md b/docs/configuration.md index cb65813c5..ebb79bdcd 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -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.