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,)const client = new AbsTime({ timeout: 5000, maxRetries: 0,});