Skip to content

Commit 68ef37a

Browse files
committed
increase default max_wait_time to 180 seconds
1 parent c11b9b2 commit 68ef37a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16-
- Cap retry interval to 5 seconds during `instances.create()` and add exponential backoff
16+
- Cap `instances.create()` retry interval to 5 seconds; add exponential backoff; increase default `max_wait_time` from 60 to 180 seconds
1717

1818
## [1.14.0] - 2025-08-15
1919

datacrunch/instances/instances.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def create(self,
125125
pricing: Optional[Pricing] = None,
126126
coupon: Optional[str] = None,
127127
*,
128-
max_wait_time: float = 60,
128+
max_wait_time: float = 180,
129129
initial_interval: float = 0.5,
130130
max_interval: float = 5,
131131
backoff_coefficient: float = 2.0) -> Instance:

0 commit comments

Comments
 (0)