mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-02-24 13:30:02 +08:00
Ignore error when multiple interfaces are detected
This commit is contained in:
parent
84fa7f35f6
commit
c4f0fafc04
@ -40,8 +40,8 @@ def addr_of(addrs, dev : str) -> ipaddress.IPv4Interface:
|
|||||||
for addr in addrs:
|
for addr in addrs:
|
||||||
if addr['ifname'] != dev:
|
if addr['ifname'] != dev:
|
||||||
continue
|
continue
|
||||||
if len(addr['addr_info']) != 1:
|
#if len(addr['addr_info']) != 1:
|
||||||
raise ValueError('only exactly one address on dev is supported')
|
# raise ValueError('only exactly one address on dev is supported')
|
||||||
info = addr['addr_info'][0]
|
info = addr['addr_info'][0]
|
||||||
return ipaddress.IPv4Interface((info['local'], info['prefixlen']))
|
return ipaddress.IPv4Interface((info['local'], info['prefixlen']))
|
||||||
raise ValueError('dev {0} not found'.format(dev))
|
raise ValueError('dev {0} not found'.format(dev))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user