Skip to content

Commit

Permalink
#1040: continue when finding errors
Browse files Browse the repository at this point in the history
  • Loading branch information
abstralexis committed Oct 17, 2024
1 parent cb9e345 commit 446824d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/console/clients/checker/checks/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub async fn run(udp_trackers: Vec<Url>, timeout: Duration) -> Vec<Result<Checks
Err(err) => {
checks.results.push((Check::Setup, Err(err)));
results.push(Err(checks));
break;
continue;
}
};

Expand All @@ -65,7 +65,7 @@ pub async fn run(udp_trackers: Vec<Url>, timeout: Duration) -> Vec<Result<Checks
Err(err) => {
checks.results.push((Check::Connect, Err(err)));
results.push(Err(checks));
break;
continue;
}
};

Expand Down

0 comments on commit 446824d

Please sign in to comment.