You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating vLUN using autoLUN option an error is thrown:
hpe3parclient.exceptions.HTTPConflict: Conflict (HTTP 409) 99 - invalid operation: LUN number and persona capability conflict
This is caused in specific cases:
host persona VMware 11 is used
LUN IDs 0-255 are used.
Root cause is introduction of PE LUN for host persona VMware 11 (LUN ID). Since HPE didn't provide a fix yet for 3PAR OS, we would like to as for enhancement of 3PARclient code in following way for autoLUN option.
1step.
autoLun = True
lun=0
maxAutoLun=0
if receive error "Conflict (HTTP 409) 99 - invalid operation: LUN number and persona capability conflict" ignore error and continue 2step
2step.
autoLun = True
lun=257
maxAutoLun=0
thanks,
Miro
The text was updated successfully, but these errors were encountered:
If auto = True, the info['lun'] will be set as zero, and maxAutoLun will be set as zero, which means no max. The vlun will be created with the lun number between 0 and max.
When creating vLUN using autoLUN option an error is thrown:
hpe3parclient.exceptions.HTTPConflict: Conflict (HTTP 409) 99 - invalid operation: LUN number and persona capability conflict
This is caused in specific cases:
Root cause is introduction of PE LUN for host persona VMware 11 (LUN ID). Since HPE didn't provide a fix yet for 3PAR OS, we would like to as for enhancement of 3PARclient code in following way for autoLUN option.
1step.
autoLun = True
lun=0
maxAutoLun=0
if receive error "Conflict (HTTP 409) 99 - invalid operation: LUN number and persona capability conflict" ignore error and continue 2step
2step.
autoLun = True
lun=257
maxAutoLun=0
thanks,
Miro
The text was updated successfully, but these errors were encountered: