Added required spaces in between two words for log messages.
cinder/volume/drivers/huawei/huawei_t.py validate_connector method.
cinder/transfer/api.py accept method.
cinder/brick/initiator/linuxscsi.py flush_device_io method.
Closes-Bug: #
1372788
Change-Id: Ia0ab72d930c1b9099dd2796032b7b2b0b857bad5
root_helper=self._root_helper)
except putils.ProcessExecutionError as exc:
msg = _("Failed to flush IO buffers prior to removing"
- "device: (%(code)s)") % {'code': exc.exit_code}
+ " device: (%(code)s)") % {'code': exc.exit_code}
LOG.warn(msg)
def flush_multipath_device(self, device):
except Exception:
donor_reservations = None
LOG.exception(_("Failed to update quota donating volume"
- "transfer id %s") % transfer_id)
+ " transfer id %s") % transfer_id)
try:
# Transfer ownership of the volume now, must use an elevated
"""Check for wwpns in connector."""
if 'wwpns' not in connector:
err_msg = (_('validate_connector: The FC driver requires the'
- 'wwpns in the connector.'))
+ ' wwpns in the connector.'))
LOG.error(err_msg)
raise exception.VolumeBackendAPIException(data=err_msg)