Skip to content

Commit 08926ec

Browse files
pamungkaskiclaude
andcommitted
chore: remove remaining Issue# references from code
Removed issue numbering from inline comments in: - src/proxy/ws.rs:171 - Changed 'Issue #5 fix' to descriptive comment - tests/steps/integration_steps.rs:1345 - Changed 'Issue #2 and #5' to descriptive header All Issue# references now removed from code files (only remain in documentation). Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 5695b82 commit 08926ec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/proxy/ws.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ async fn health_monitor(
168168
let node_name = current_node_name.lock().await.clone();
169169
let current_healthy = is_node_healthy(&state, &node_name).await;
170170

171-
// Check if better node available (Issue #5 fix)
171+
// Check if a better node is available (prioritizes primary over backup)
172172
if let Some((best_name, best_url)) = select_healthy_node(&state).await {
173173
// Reconnect if better node available (different name)
174174
// This handles both:

tests/steps/integration_steps.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,8 @@ async fn no_websocket_errors(world: &mut IntegrationWorld) {
13421342
}
13431343

13441344
// ============================================================================
1345-
// Phase 0 Critical Test Step Definitions (Issue #2 and #5)
1345+
// WebSocket Reconnection Test Step Definitions
1346+
// Tests subscription ID preservation and primary node failback
13461347
// ============================================================================
13471348

13481349
#[when("I send eth_blockNumber over WebSocket and receive response")]

0 commit comments

Comments
 (0)