report_checks-endpoint_path_count -slack_max

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2025-01-11 10:27:05 -07:00
parent c6ea49bd2d
commit f800b899b4
1 changed files with 2 additions and 1 deletions

View File

@ -797,7 +797,8 @@ PathGroups::enumPathEnds(PathGroup *group,
// Parallel path enumeratation to find the endpoint_path_count/max path ends.
for (int n = 0; path_enum.hasNext() && n < group_path_count; n++) {
PathEnd *end = path_enum.next();
group->insert(end);
if (group->savable(end))
group->insert(end);
}
}