Skip to content

Commit

Permalink
update filter AS script after verbosity changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed May 1, 2024
1 parent 8c52c1d commit 293ae59
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion route_verification/src/evcxr_examples/filter_as.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ fn reports_for_paths_containing_certain_as(
.par_iter()
.filter_map(|line| {
let mut line = (*line).clone();
line.compare.verbosity = Verbosity::minimum_all();
line.compare.verbosity = Verbosity {
all_err: true,
record_set: true,
record_community: true,
..Verbosity::minimum_all()
};
line.report = Some(line.compare.check_with_relationship(query, db));
line.report
.as_ref()
Expand Down

0 comments on commit 293ae59

Please sign in to comment.