Merge "Avoid unhandled exceptions during connecting to iSCSI portals" into stable/victoria

This commit is contained in:
Zuul 2021-05-19 16:14:32 +00:00 committed by Gerrit Code Review
commit 223bad9c8a
3 changed files with 34 additions and 10 deletions

View File

@ -630,7 +630,13 @@ class ISCSIConnector(base.BaseLinuxConnector, base_iscsi.BaseISCSIConnector):
"""
device = hctl = None
portal = props['target_portal']
try:
session, manual_scan = self._connect_to_iscsi_portal(props)
except Exception:
LOG.exception('Exception connecting to %s', portal)
session = None
if session:
do_scans = rescans > 0 or manual_scan
# Scan is sent on connect by iscsid, but we must do it manually on
# manual scan mode. This scan cannot count towards total rescans.
@ -641,7 +647,6 @@ class ISCSIConnector(base.BaseLinuxConnector, base_iscsi.BaseISCSIConnector):
num_rescans = 0
seconds_next_scan = 4
if session:
data['num_logins'] += 1
LOG.debug('Connected to %s', portal)
while do_scans:

View File

@ -1533,6 +1533,18 @@ Setting up iSCSI targets: unused
expected.update(failed_logins=1, stopped_threads=1)
self.assertDictEqual(expected, data)
@mock.patch.object(iscsi.ISCSIConnector, '_connect_to_iscsi_portal')
def test_connect_vol_with_connection_failure(self, connect_mock):
data = self._get_connect_vol_data()
connect_mock.side_effect = Exception()
self.connector._connect_vol(3, self.CON_PROPS, data)
expected = self._get_connect_vol_data()
expected.update(failed_logins=1, stopped_threads=1)
self.assertDictEqual(expected, data)
@mock.patch('os_brick.utils._time_sleep', mock.Mock())
@mock.patch.object(linuxscsi.LinuxSCSI, 'scan_iscsi')
@mock.patch.object(linuxscsi.LinuxSCSI, 'device_name_by_hctl',

View File

@ -0,0 +1,7 @@
---
fixes:
- |
`Bug #1915678 <https://bugs.launchpad.net/cinder/+bug/1915678>`_: Fix
unhandled exception during iscsi volume attachment with multipath enabled
that resulted in the cinder-volume service becoming stuck and requiring
a restart.