We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c11b9b2 commit 68ef37aCopy full SHA for 68ef37a
2 files changed
CHANGELOG.md
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
14
### Changed
15
16
-- Cap retry interval to 5 seconds during `instances.create()` and add exponential backoff
+- Cap `instances.create()` retry interval to 5 seconds; add exponential backoff; increase default `max_wait_time` from 60 to 180 seconds
17
18
## [1.14.0] - 2025-08-15
19
datacrunch/instances/instances.py
@@ -125,7 +125,7 @@ def create(self,
125
pricing: Optional[Pricing] = None,
126
coupon: Optional[str] = None,
127
*,
128
- max_wait_time: float = 60,
+ max_wait_time: float = 180,
129
initial_interval: float = 0.5,
130
max_interval: float = 5,
131
backoff_coefficient: float = 2.0) -> Instance:
0 commit comments