Skip to content

Commit

Permalink
worker_command_tester: fix retrying hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Jul 28, 2023
1 parent 0077752 commit bc1c016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/worker_command_tester
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,10 @@ sub _print_summary {
for my $hst (sort keys %{$summary}) {
_info("- %s", $hst);
if($summary->{$hst}->{"__HOST__"}) {
delete $summary->{$hst}->{"__HOST__"};
_info(" - host check");
}
for my $svc (sort keys %{$summary->{$hst}}) {
next if $svc eq "__HOST__";
_info(" - %s", $svc);
}
}
Expand Down

0 comments on commit bc1c016

Please sign in to comment.