Merge "Add additional exception handling to ARP cleanup." into stable/liberty

This commit is contained in:
Jenkins 2016-05-19 06:22:38 +00:00 committed by Gerrit Code Review
commit 65a3375404
1 changed files with 5 additions and 1 deletions

View File

@ -155,4 +155,8 @@ class ARPManager(base.Manager):
:type ip: str
:param ip: IP address to search for in the ARP table.
"""
self.sudo('-d', ip)
try:
self.sudo('-d', ip)
except:
# It's possible that these have already been cleaned up
pass