It was recommended in review https://review.openstack.org/#/c/180873
that the message sent to the NotImplementedError exception be reworded.
The recommendation was made late in the review process and was not
corrected. This patch implements the recommendation.
Change-Id: I1b0356c7b9d7e493c8501ce388ca4bc855b1e517
:param original_volume_status: The status of the original volume
:return model_update to update DB with any needed changes
"""
- msg = _("The method update_migrated_volume not implemented.")
+ msg = _("The method update_migrated_volume is not implemented.")
raise NotImplementedError(msg)
def migrate_volume(self, context, volume, host):