Skip to content

Commit a34f66e

Browse files
committed
Fix torrust#1040: continue when finding errors
1 parent cb9e345 commit a34f66e

File tree

1 file changed

+2
-2
lines changed
  • src/console/clients/checker/checks

1 file changed

+2
-2
lines changed

src/console/clients/checker/checks/udp.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pub async fn run(udp_trackers: Vec<Url>, timeout: Duration) -> Vec<Result<Checks
5050
Err(err) => {
5151
checks.results.push((Check::Setup, Err(err)));
5252
results.push(Err(checks));
53-
break;
53+
continue;
5454
}
5555
};
5656

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

0 commit comments

Comments
 (0)