Skip to content

Commit 8313141

Browse files
author
ci.datadog-api-spec
committed
pre-commit fixes
1 parent 782760a commit 8313141

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/datadog_api_client/configuration.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,6 @@ class Configuration:
143143
:type retry_backoff_factor: float
144144
:param max_retries: The maximum number of times a single request can be retried.
145145
:type max_retries: int
146-
:param retry_policy: Custom retry policy instance (e.g., urllib3.util.Retry). If provided, this overrides
147-
the default retry behavior and the enable_retry, retry_backoff_factor, and max_retries settings.
148-
:type retry_policy: urllib3.util.Retry
149146
:param delegated_auth_provider: The delegated authentication provider (e.g., 'aws' for AWS).
150147
:type delegated_auth_provider: str
151148
:param delegated_auth_org_uuid: The organization UUID for delegated authentication.
@@ -177,7 +174,6 @@ def __init__(
177174
enable_retry=False,
178175
retry_backoff_factor=2,
179176
max_retries=3,
180-
retry_policy=None,
181177
delegated_auth_provider=None,
182178
delegated_auth_org_uuid=None,
183179
):
@@ -242,7 +238,6 @@ def __init__(
242238
self.enable_retry = enable_retry
243239
self.retry_backoff_factor = retry_backoff_factor
244240
self.max_retries = max_retries
245-
self.retry_policy = retry_policy
246241

247242
# Keep track of unstable operations
248243
self.unstable_operations = _UnstableOperations(

0 commit comments

Comments
 (0)