Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyeapi/api/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ def get(self, name):
* udp_port (int): The vxlan udp-port value
* vlans (dict): The vlan to vni mappings
* flood_list (list): The list of global VTEP flood list
* multicast_decap (bool): If the mutlicast decap
* multicast_decap (bool): If the multicast decap
feature is configured

Args:
Expand Down Expand Up @@ -884,7 +884,7 @@ def _parse_multicast_group(self, config):
return dict(multicast_group=value)

def _parse_multicast_decap(self, config):
value = 'vxlan mutlicast-group decap' in config
value = 'vxlan multicast-group decap' in config
return dict(multicast_decap=bool(value))

def _parse_udp_port(self, config):
Expand Down