Skip to content

Commit 380104c

Browse files
committed
No need to report removal of virtual_interface flag
1 parent c02921e commit 380104c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

netsim/devices/iosvl2.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,7 @@ def vlan_1_tagged(node: Box, topology: Box) -> None:
4141
def lag_remove_virtual(node: Box, topology: Box) -> None:
4242
for intf in node.interfaces:
4343
if intf.get('type') == 'lag' and 'virtual_interface' in intf:
44-
del intf['virtual_interface']
45-
report_quirk(
46-
f'Cisco IOS layer-2 image: PortChannel interface will be treated as a physical interface.',
47-
more_data=f'Removing virtual_interface tag from (node {node.name} {intf.ifname})',
48-
node=node,
49-
quirk='lag_remove_virtual',
50-
category=Warning)
44+
del intf['virtual_interface']
5145

5246
class IOSvL2(_IOS):
5347
@classmethod

0 commit comments

Comments
 (0)