do not die if cannot remove socket file

(may be it was removed by hand or by other app)

Change-Id: I5a85c39e09a87cc4f0ec2b76819b264f26d433f8
Signed-off-by: Andrey Zaikin <a.zaikin@partner.samsung.com>
This commit is contained in:
Andrey Zaikin 2020-02-28 17:40:15 +03:00
parent a4e4280031
commit 25fb761251
1 changed files with 5 additions and 1 deletions

View File

@ -117,7 +117,11 @@ class VIFVHostUserDriver(health.HealthHandler, base.BaseBindingDriver):
vhu_sock_path = os.path.join(self.mount_path,
_get_vhu_sock(config_file_path))
LOG.debug("remove: %s, %s", config_file_path, vhu_sock_path)
try:
os.remove(vhu_sock_path)
except Exception:
LOG.exception("Failed to delete socket %s when processing VIF %s.",
vhu_sock_path, vif.id)
os.remove(config_file_path)
def is_alive(self):