The following error is caused by a missing String formatting in the
linuxbridge agent:
"ValueError: unsupported format character 'a' (0x61) at index 90
Logged from file linuxbridge_neutron_agent.py, line 447"
In addition a duplicated word in the log text has been fixed.
Change-Id: I587f1165fc7084dc9c4806149b65652f6e27b14e
'device_owner': device_owner,
'bridge_name': bridge_name}
LOG.debug("Skip adding device %(tap_device_name)s to "
- "%(bridge_name)s. It is owned by %(device_owner) and "
- "thus added elsewhere."
- "elsewhere", data)
+ "%(bridge_name)s. It is owned by %(device_owner)s and "
+ "thus added elsewhere.", data)
return True
def ensure_tap_mtu(self, tap_dev_name, phy_dev_name):