fix(ilp): remove multi-url blacklisting code#6393
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughRemoves host blacklist tracking and retry control optimization from the line sender. The retry loop now iterates across all hosts without checking prior blacklist state, allowing recovery in dynamic deployment scenarios where host roles change mid-retry. Changes
Sequence Diagram(s)sequenceDiagram
participant Sender
participant Host A
participant Host B
Note over Sender: Before: With Blacklisting
Sender->>Host A: Send request (fails - non-retryable)
Note over Sender: Blacklist Host A
Sender->>Host B: Try Host B
Host B->>Sender: Reject (read-only)
Note over Sender: Blacklist Host B<br/>(no hosts available)
Note over Sender: Wait for retry deadline...<br/>(artificial delay)
Note over Sender: After: Without Blacklisting
Sender->>Host A: Send request (fails)
Sender->>Host B: Try Host B
Host B->>Sender: Reject (read-only)
Sender->>Host A: Immediately retry Host A<br/>(no blacklist state)
Note over Sender: Continues retrying based<br/>on deadline, not blacklist
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes
Pre-merge checks and finishing touches✅ Passed checks (5 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@CodeRabbit review |
✅ Actions performedReview triggered.
|
[PR Coverage check]😍 pass : 0 / 0 (0%) |
Closes #6330