Merge "Reduce log level in "ensure_device_is_ready"" into stable/ussuri

This commit is contained in:
Zuul 2022-01-06 18:28:16 +00:00 committed by Gerrit Code Review
commit 0f18d0258a
1 changed files with 2 additions and 2 deletions

View File

@ -969,8 +969,8 @@ def ensure_device_is_ready(device_name, namespace=None):
# Ensure the device has a MAC address and is up, even if it is already
# up.
if not dev.link.exists or not dev.link.address:
LOG.error("Device %s cannot be used as it has no MAC "
"address", device_name)
LOG.info("Device %s cannot be used as it has no MAC "
"address", device_name)
return False
dev.link.set_up()
except RuntimeError: