Merge "[Pure Storage] Fix issue with NVMe LACP ports not being identified" into stable/2024.1
This commit is contained in:
commit
ae5be997ea
@ -3481,7 +3481,7 @@ class PureNVMEDriver(PureBaseVolumeDriver, driver.BaseVD):
|
|||||||
valid_nvme_ports = []
|
valid_nvme_ports = []
|
||||||
nvme_ports = [port for port in ports if port["nqn"]]
|
nvme_ports = [port for port in ports if port["nqn"]]
|
||||||
for port in range(0, len(nvme_ports)):
|
for port in range(0, len(nvme_ports)):
|
||||||
if "ETH" in nvme_ports[port]["name"]:
|
if "FC" not in nvme_ports[port]["name"]:
|
||||||
port_detail = array.get_network_interface(
|
port_detail = array.get_network_interface(
|
||||||
interface=nvme_ports[port]["name"]
|
interface=nvme_ports[port]["name"]
|
||||||
)
|
)
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Pure Storage `bug #2101859
|
||||||
|
<https://bugs.launchpad.net/cinder/+bug/2101859>`_: Fixed issue where
|
||||||
|
LACP bonds were not been correctly identified as NVMe targets.
|
Loading…
x
Reference in New Issue
Block a user