Skip to content

Commit

Permalink
make DP dependent
Browse files Browse the repository at this point in the history
  • Loading branch information
ratulm committed Jan 27, 2021
1 parent b749274 commit c7e28c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public AnswerElement answer(NetworkSnapshot snapshot) {
CandidateOspfTopology candidateTopo =
OspfTopologyUtils.computeCandidateOspfTopology(
NetworkConfigurations.of(configurations),
_batfish.getTopologyProvider().getLayer3Topology(_batfish.getSnapshot()));
_batfish.getTopologyProvider().getLayer3Topology(snapshot));
Multiset<Row> propertyRows =
getRows(
configurations,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Set<OspfSessionStatus> getStatusSet() {

@Override
public boolean getDataPlane() {
return false;
return true;
}

@Override
Expand Down
1 change: 1 addition & 0 deletions questions/experimental/ospfSessionCompatibility.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
],
"tags": [
"ospf",
"dataplane",
"status"
],
"variables": {
Expand Down
1 change: 1 addition & 0 deletions tests/questions/experimental/ospfSessionCompatibility.ref
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"statuses"
],
"tags" : [
"dataplane",
"ospf",
"status"
],
Expand Down

0 comments on commit c7e28c0

Please sign in to comment.