Merge "NetApp SolidFire: Fix request errors while Element OS upgrade"

This commit is contained in:
Zuul 2022-08-03 16:05:01 +00:00 committed by Gerrit Code Review
commit ba7b11c863
2 changed files with 21 additions and 2 deletions

View File

@ -281,9 +281,14 @@ class SolidFireDriver(san.SanISCSIDriver):
as retyping.
Fix bug #1932964 SolidFire duplicate volume name exception
on migration and replication.
2.2.4 - Fix bug #1934435 fix driver failing with multiple exceptions
during Element OS upgrade by adding xDBOperationTimeout,
xDBConnectionLoss, xNoHandler, xSnapshotFailed,
xRecvTimeout, xDBNoSuchPath, xPermissionDenied to the
retryable exception list
"""
VERSION = '2.2.3'
VERSION = '2.2.4'
SUPPORTS_ACTIVE_ACTIVE = True
@ -322,7 +327,14 @@ class SolidFireDriver(san.SanISCSIDriver):
'xMaxClonesPerNodeExceeded',
'xSliceNotRegistered',
'xNotReadyForIO',
'xNotPrimary']
'xNotPrimary',
'xDBOperationTimeout',
'xDBConnectionLoss',
'xNoHandler',
'xSnapshotFailed',
'xRecvTimeout',
'xDBNoSuchPath',
'xPermissionDenied']
def __init__(self, *args, **kwargs):
super(SolidFireDriver, self).__init__(*args, **kwargs)

View File

@ -0,0 +1,7 @@
---
fixes:
- |
NetApp SolidFire driver `Bug #1934435
<https://bugs.launchpad.net/cinder/+bug/1934435>`_:
Fixed errors that might occur when an operation is made to a volume at the
same time as the Element OS upgrades.