feat(market): add retry with exponential backoff to all API calls#12
Merged
ShuhaoQing merged 1 commit intomainfrom Apr 7, 2026
Merged
feat(market): add retry with exponential backoff to all API calls#12ShuhaoQing merged 1 commit intomainfrom
ShuhaoQing merged 1 commit intomainfrom
Conversation
External API calls (Sina, Tencent, Eastmoney, CoinGecko, exchangerate) had no retry logic, causing failures on transient network errors. Add tenacity-based retry decorator with exponential backoff + jitter (3 attempts, 1s→2s→4s) for connection errors, timeouts, and 5xx. 4xx client errors are not retried. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
tenacity==9.1.4for retry logic with exponential backoff + jitterhaoinvest/http_retry.pymodule with shared@api_retrydecorator (3 attempts, 1s→2s→4s, jitter ±0.5s)get_valuation, eastmoneyget_financial_indicators), extracted HTTP calls into separate retry-wrapped helpers to preserve graceful fallback behaviorTest plan
tests/test_http_retry.pywith 15 tests covering:_is_retryablepredicate for all exception types (requests + httpx)haoinvest market quote 600519with network enabled🤖 Generated with Claude Code