Fix misspellings in cinder

Fix misspellings detected by:
* pip install misspellings
* git ls-files | grep -v locale | misspellings -f -

Change-Id: I4780a9cdd4a2aff5a3dbc55c87e93b0972d907db
Closes-Bug: #1257295
This commit is contained in:
Shane Wang 2014-02-07 14:45:43 +08:00
parent 0e71f48123
commit cb33593e3d
5 changed files with 6 additions and 6 deletions

View File

@ -89,7 +89,7 @@ def get_flow(context, db, driver, request_spec=None,
1. Inject keys & values for dependent tasks.
2. Extracts a scheduler specification from the provided inputs.
3. Attaches 2 activated only on *failure* tasks (one to update the db
status and one to notify on the MQ of the failure that occured).
status and one to notify on the MQ of the failure that occurred).
4. Uses provided driver to to then select and continue processing of
volume request.
"""

View File

@ -28,7 +28,7 @@ number and the weighing has the opposite effect of the default.
The default behavior is to place new volume to the host allocated the least
space. This weigher is intended to simulate the behavior of SimpleScheduler.
If you prefer to place volumes to host allocated the most space, you can
set the 'allocated_capacity_weight_multiplier' option to a postive number
set the 'allocated_capacity_weight_multiplier' option to a positive number
and the weighing has the opposite effect of the default.
"""

View File

@ -71,10 +71,10 @@ class CinderExceptionTestCase(test.TestCase):
self.flags(fatal_exception_format_errors=False)
class FakeCinderException(exception.CinderException):
message = "default message: %(mispelled_code)s"
message = "default message: %(misspelled_code)s"
exc = FakeCinderException(code=500)
self.assertEqual(unicode(exc), 'default message: %(mispelled_code)s')
self.assertEqual(unicode(exc), 'default message: %(misspelled_code)s')
def test_default_error_code(self):
class FakeCinderException(exception.CinderException):

View File

@ -229,7 +229,7 @@ class NetAppDirectISCSIDriver(driver.ISCSIDriver):
LOG.debug(msg % msg_fmt)
iqn = self._get_iscsi_service_details()
target_details_list = self._get_target_details()
msg = _("Succesfully fetched target details for LUN %(name)s and "
msg = _("Successfully fetched target details for LUN %(name)s and "
"initiator %(initiator_name)s")
msg_fmt = {'name': name, 'initiator_name': initiator_name}
LOG.debug(msg % msg_fmt)

View File

@ -1218,7 +1218,7 @@ class VolumeManager(manager.SchedulerDependentManager):
retyped = self.driver.retype(context, volume_ref, new_type,
diff, host)
if retyped:
LOG.info(_("Volume %s: retyped succesfully"), volume_id)
LOG.info(_("Volume %s: retyped successfully"), volume_id)
except Exception as ex:
retyped = False
LOG.error(_("Volume %s: driver error when trying to retype, "