Skip to content

Commit

Permalink
fix polarity
Browse files Browse the repository at this point in the history
  • Loading branch information
bw-solana committed Jan 16, 2025
1 parent 22cc89a commit 637a1a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/repair/repair_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ impl RepairService {

// Purge old entries. They've either completed or need to be retried.
outstanding_repairs.retain(|_repair_request, time| {
timestamp().saturating_sub(*time) > REPAIR_REQUEST_TIMEOUT_MS
timestamp().saturating_sub(*time) < REPAIR_REQUEST_TIMEOUT_MS
});

let repairs = match repair_info.wen_restart_repair_slots.clone() {
Expand Down

0 comments on commit 637a1a7

Please sign in to comment.