You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
What's New
ClientConfig dataclass (sap_cloud_sdk.agentgateway.ClientConfig): a new configuration object accepted by AgentGatewayClient and create_client(). Currently exposes a single timeout: float field controlling the HTTP timeout (in seconds) for all token requests and MCP server calls.
Improvements
Increased default HTTP timeout from 30.0 s to 60.0 s to better accommodate slower MCP server response times.
Centralised timeout configuration: the previously hard-coded _HTTP_TIMEOUT constants in _customer.py and _lob.py are replaced by DEFAULT_TIMEOUT_SECONDS defined in the new config.py module and propagated through all internal HTTP call sites.