Skip to content

Retries and Timeouts

The client retries certain transient failures once by default with a short backoff.

Requests time out after 15 seconds by default.

You can configure both when creating the client.

client = abstime.AbsTime(
timeout=5,
max_retries=0,
)