Skip to content

Commit

Permalink
Route table: fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgov committed Nov 18, 2024
1 parent 8c643fd commit fa32b93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lisa/features/network_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def create_route_table(
dest_hop: str,
em_first_hop: str = "",
next_hop_type: str = "",
resource_group: str = "",
resource_group_name: str = "",
) -> None:
raise NotImplementedError

Expand Down
4 changes: 2 additions & 2 deletions microsoft/testsuites/dpdk/dpdkutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ def verify_dpdk_l3fwd_ntttcp_tcp(
em_first_hop=AZ_ROUTE_ALL_TRAFFIC,
next_hop_type="VirtualAppliance",
dest_hop=subnet_a_nics[forwarder].ip_addr,
resource_group=resource_group_name,
resource_group_name=resource_group_name,
)
receiver.features[NetworkInterface].create_route_table(
nic_name=subnet_b_nics[forwarder].name,
Expand All @@ -881,7 +881,7 @@ def verify_dpdk_l3fwd_ntttcp_tcp(
em_first_hop=AZ_ROUTE_ALL_TRAFFIC,
next_hop_type="VirtualAppliance",
dest_hop=subnet_b_nics[forwarder].ip_addr,
resource_group=resource_group_name,
resource_group_name=resource_group_name,
)

# Do actual DPDK initialization, compile l3fwd and apply setup to
Expand Down

0 comments on commit fa32b93

Please sign in to comment.