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
||| network_span_namer | x | x | A callable to customize the span name. |
425
+
||| tracing_attributes | x | x | Attributes to set on all created spans. |
426
+
| --- | --- | --- | --- | --- | --- |
427
+
| RedirectPolicy | HTTPPolicy |||||
428
+
||| permit_redirects | x | x | Whether the client allows redirects. Defaults to `True`. |
429
+
||| redirect_max | x | x | The maximum allowed redirects. Defaults to `30`. |
430
+
| AsyncRedirectPolicy | AsyncHTTPPolicy |||||
431
+
||| permit_redirects | x | x | Whether the client allows redirects. Defaults to `True`. |
432
+
||| redirect_max | x | x | The maximum allowed redirects. Defaults to `30`. |
433
+
| RetryPolicy | HTTPPolicy |||||
434
+
||| retry_total | x | x | Total number of retries to allow. Takes precedence over other counts. Default value is `10`. |
435
+
||| retry_connect | x | x | How many connection-related errors to retry on. These are errors raised before the request is sent to the remote server, which we assume has not triggered the server to process the request. Default value is `3`. |
436
+
||| retry_read | x | x | How many times to retry on read errors. These errors are raised after the request was sent to the server, so the request may have side-effects. Default value is `3`. |
437
+
||| retry_status | x | x | How many times to retry on bad status codes. Default value is `3`. |
438
+
||| retry_backoff_factor | x | x | A backoff factor to apply between attempts after the second try (most errors are resolved immediately by a second try without a delay). Retry policy will sleep for: `{backoff factor} * (2 ** ({number of total retries} - 1))` seconds. If the backoff_factor is 0.1, then the retry will sleep for [0.0s, 0.2s, 0.4s, ...] between retries. The default value is `0.8`. |
439
+
||| retry_backoff_max | x | x | The maximum back off time. Default value is `120` seconds (2 minutes). |
440
+
||| retry_mode | x | x | Fixed or exponential delay between attemps, default is `exponential`. |
441
+
||| timeout | x | x | Timeout setting for the operation in seconds, default is `604800s` (7 days). |
442
+
| AsyncRetryPolicy | AsyncHTTPPolicy |||||
443
+
||| retry_total | x | x | Total number of retries to allow. Takes precedence over other counts. Default value is `10`. |
444
+
||| retry_connect | x | x | How many connection-related errors to retry on. These are errors raised before the request is sent to the remote server, which we assume has not triggered the server to process the request. Default value is `3`. |
445
+
||| retry_read | x | x | How many times to retry on read errors. These errors are raised after the request was sent to the server, so the request may have side-effects. Default value is `3`. |
446
+
||| retry_status | x | x | How many times to retry on bad status codes. Default value is `3`. |
447
+
||| retry_backoff_factor | x | x | A backoff factor to apply between attempts after the second try (most errors are resolved immediately by a second try without a delay). Retry policy will sleep for: `{backoff factor} * (2 ** ({number of total retries} - 1))` seconds. If the backoff_factor is 0.1, then the retry will sleep for [0.0s, 0.2s, 0.4s, ...] between retries. The default value is `0.8`. |
448
+
||| retry_backoff_max | x | x | The maximum back off time. Default value is `120` seconds (2 minutes). |
449
+
||| retry_mode | x | x | Fixed or exponential delay between attemps, default is exponential. |
450
+
||| timeout | x | x | Timeout setting for the operation in seconds, default is `604800s` (7 days). |
0 commit comments