Sync contents

This commit is contained in:
Daniel Xu 2025-12-03 01:00:03 +00:00
parent 74c6b87e9d
commit 0622760140
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{
"last_synced_sha": "86e62d735413be9272a40724e27feeff5e57a108",
"last_sync_time": "2025-12-02T20:53:58.487562"
"last_synced_sha": "ffa781c9432bd1afb73c278d253d0a7cd1b333d8",
"last_sync_time": "2025-12-03T01:00:03.831979"
}

View file

@ -1,6 +1,6 @@
[project]
name = "tinker"
version = "0.6.2"
version = "0.6.3"
description = "The official Python SDK for the tinker API"
readme = "README.md"
license = "Apache-2.0"

View file

@ -38,7 +38,7 @@ def is_retryable_status_code(status_code: int) -> bool:
@dataclass
class RetryConfig:
max_connections: int = DEFAULT_CONNECTION_LIMITS.max_connections or 100
progress_timeout: float = 30 * 60 # Very long straggler
progress_timeout: float = 120 * 60 # Very long straggler
retry_delay_base: float = INITIAL_RETRY_DELAY
retry_delay_max: float = MAX_RETRY_DELAY
jitter_factor: float = 0.25