We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b10f4 commit eed65eeCopy full SHA for eed65ee
tap-agent/src/agent/sender_account.rs
@@ -648,8 +648,8 @@ impl Actor for SenderAccount {
648
state.add_to_denylist().await;
649
}
650
651
- let has_limit_available = state.adaptive_limiter.has_limit();
652
- if has_limit_available {
+ let has_available_slots_for_requests = state.adaptive_limiter.has_limit();
+ if has_available_slots_for_requests {
653
let total_counter_for_allocation = state
654
.sender_fee_tracker
655
.get_count_outside_buffer_for_allocation(&allocation_id);
0 commit comments