Skip to main content

Documentation Index

Fetch the complete documentation index at: https://handbook.fiddler.ai/llms.txt

Use this file to discover all available pages before exploring further.

Raised when a connection timeout occurs during HTTP requests. This exception was used to indicate that an HTTP request to the Fiddler platform timed out while waiting for a response. Timeouts can occur due to network issues, server overload, or requests taking longer than the configured timeout period.

Examples

Historical usage (now deprecated):

    try:
        # Long-running API call
        pass

    except ConnTimeout as e:
        print(f"Request timed out: {e.message}")
        # Retry with longer timeout or check network

message: str = "Python Client version ({client_version}) is not compatible with your Fiddler Platform version ({server_version})."