Skip to content

Commit

Permalink
add eigrp process
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed Dec 30, 2020
1 parent 8eb031e commit c5d013f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ private Optional<EigrpExternalRoute> filterAndTransformExternalRoute(
EigrpNeighborConfigId neighborConfigId, EigrpExternalRoute route) {
RoutingPolicy exportPolicy = getOwnExportPolicy(neighborConfigId);
EigrpExternalRoute.Builder builder = route.toBuilder();
boolean allowed = exportPolicy.process(route, builder, Direction.OUT);
boolean allowed = exportPolicy.process(route, builder, _process, Direction.OUT);
return allowed ? Optional.of(builder.build()) : Optional.empty();
}

Expand Down

0 comments on commit c5d013f

Please sign in to comment.