Merge "[Pure Storage] Fix issue with NVMe LACP ports not being identified" into stable/2024.1

This commit is contained in:
Zuul 2025-04-24 00:04:49 +00:00 committed by Gerrit Code Review
commit ae5be997ea
2 changed files with 7 additions and 1 deletions

View File

@ -3481,7 +3481,7 @@ class PureNVMEDriver(PureBaseVolumeDriver, driver.BaseVD):
valid_nvme_ports = []
nvme_ports = [port for port in ports if port["nqn"]]
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(
interface=nvme_ports[port]["name"]
)

View File

@ -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.