Skip to content

Implement round-robin RPC client with cooldown mechanism #171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Jul 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e6e63fb
Implement round-robin RPC client with cooldown mechanism
devin-ai-integration[bot] Jul 7, 2025
5fb25a2
Fix rustfmt and trailing whitespace issues
devin-ai-integration[bot] Jul 7, 2025
c269031
Abstract common retry logic into helper methods
devin-ai-integration[bot] Jul 7, 2025
042187f
Abstract while loop retry pattern into generic macro
devin-ai-integration[bot] Jul 7, 2025
519ee7c
Move helper methods into macro and use tokio::sync::Mutex
devin-ai-integration[bot] Jul 9, 2025
49ab4d0
Replace macro with generic function using Pin<Box<dyn Future>>
devin-ai-integration[bot] Jul 9, 2025
3ae60eb
refactor: make it more concise
ali-behjati Jul 9, 2025
8c2b79c
Optimize async closure patterns based on GitHub feedback
devin-ai-integration[bot] Jul 11, 2025
3a7098b
Merge ali-behjati's refactor with async closure optimizations
devin-ai-integration[bot] Jul 11, 2025
5830e48
Add spacing improvements to round-robin algorithm structures
devin-ai-integration[bot] Jul 11, 2025
1d248df
Fix trailing whitespace issues in round-robin algorithm
devin-ai-integration[bot] Jul 11, 2025
158bbca
Fix trailing whitespace issues in round-robin algorithm
devin-ai-integration[bot] Jul 11, 2025
e9a6144
Fix trailing whitespace issues in round-robin algorithm
devin-ai-integration[bot] Jul 11, 2025
7868fa9
Prepare for comprehensive round-robin algorithm documentation
devin-ai-integration[bot] Jul 11, 2025
aa00fab
Fix trailing whitespace in round-robin algorithm
devin-ai-integration[bot] Jul 11, 2025
9c55c92
Remove empty comment lines from round-robin algorithm
devin-ai-integration[bot] Jul 11, 2025
01d9363
minor comments
merolish Jul 14, 2025
450d6f8
chore: bump version
ali-behjati Jul 15, 2025
371ab98
refactor: remove unnecessary clones
ali-behjati Jul 15, 2025
b4a9cb0
fix: avoid division by zero when no endpoint is passed
ali-behjati Jul 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyth-agent"
version = "3.0.5"
version = "3.0.6"
edition = "2024"

[[bin]]
Expand Down
Loading
Loading