Skip to content

Commit

Permalink
[CLI][show][bgp] Fix the show ip bgp network command (sonic-net#1733)
Browse files Browse the repository at this point in the history
Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan <arlakshm@microsoft.com>
  • Loading branch information
arlakshm committed Jul 30, 2021
1 parent 679a4ba commit 8a74d03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion show/bgp_frr_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def neighbors(ipaddress, info_type, namespace):
show_default=True,
required=True if multi_asic.is_multi_asic is True else False,
help='Namespace name or all',
default=None,
default=multi_asic.DEFAULT_NAMESPACE,
callback=multi_asic_util.multi_asic_namespace_validation_callback)
def network(ipaddress, info_type, namespace):
"""Show IP (IPv4) BGP network"""
Expand Down
2 changes: 1 addition & 1 deletion show/bgp_frr_v6.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def neighbors(ipaddress, info_type, namespace):
show_default=True,
required=True if multi_asic.is_multi_asic is True else False,
help='Namespace name or all',
default=None,
default=multi_asic.DEFAULT_NAMESPACE,
callback=multi_asic_util.multi_asic_namespace_validation_callback)
def network(ipaddress, info_type, namespace):
"""Show BGP ipv6 network"""
Expand Down

0 comments on commit 8a74d03

Please sign in to comment.