Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4702,7 +4702,7 @@ def remove(ctx, interface_name, ip_addr):
command = ['sudo', 'ip', 'netns', 'exec', str(ctx.obj['namespace']), 'ip', 'neigh', 'flush', 'dev', str(interface_name), str(ip_address)]
else:
command = ['ip', 'neigh', 'flush', 'dev', str(interface_name), str(ip_address)]
clicommon.run_command(command)
clicommon.run_command(command, ignore_error=True)

#
# 'loopback-action' subcommand
Expand Down