Fix typo in connection timeout comment and improve identify example output formatting

This commit is contained in:
yashksaini-coder
2025-09-18 21:36:25 +05:30
parent 67a3cab2e2
commit 3f30ed4437
2 changed files with 29 additions and 15 deletions

View File

@ -156,7 +156,7 @@ async def example_production_ready_config() -> None:
# Production-ready connection configuration
connection_config = ConnectionConfig(
max_connections_per_peer=3, # Balance between performance and resource usage
connection_timeout=30.0, # Reasonable timeout
connection_timeout=30.0, # Reasonable timeouta
load_balancing_strategy="round_robin", # Simple, predictable strategy
)