Merge "NEC driver: fix an undefined variable"

This commit is contained in:
Zuul 2019-11-27 18:43:33 +00:00 committed by Gerrit Code Review
commit 295598ab33
2 changed files with 8 additions and 2 deletions

View File

@ -742,6 +742,13 @@ class BindLDTest(volume_helper.MStorageDSVDriver, test.TestCase):
vol, vol.size, None,
self._convert_id2name,
self._select_leastused_poolnumber)
self.mock_object(self._cli, 'get_pair_lds',
return_value={'lds1', 'lds2', 'lds3'})
with self.assertRaisesRegex(exception.VolumeBackendAPIException,
'Cannot create clone volume. '
'number of pairs reached 3. '
'ldname=LX:287RbQoP7VdwR1WsPC2fZT'):
self.create_cloned_volume(vol, src)
def test_bindld_CreateCloneWaitingInterval(self):
self.assertEqual(10, cli.get_sleep_time_for_clone(0))

View File

@ -471,8 +471,7 @@ class MStorageDriver(volume_common.MStorageVolumeCommon):
if len(pair_lds) == 3:
msg = (_('Cannot create clone volume. '
'number of pairs reached 3. '
'%(msg)s. ldname=%(ldname)s') %
{'msg': msg, 'ldname': source_name})
'ldname=%s') % source_name)
LOG.error(msg)
raise exception.VolumeBackendAPIException(data=msg)