diff --git a/.sync_state b/.sync_state index 062888e..e8a20d3 100644 --- a/.sync_state +++ b/.sync_state @@ -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" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4b5a731..06bc56c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/tinker/lib/retry_handler.py b/src/tinker/lib/retry_handler.py index 7547936..ef0197d 100644 --- a/src/tinker/lib/retry_handler.py +++ b/src/tinker/lib/retry_handler.py @@ -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