From cdfee5608b725e6be35d85f5b04cf51dc756cac5 Mon Sep 17 00:00:00 2001 From: zhaoleilc <15247232416@163.com> Date: Sat, 11 Jul 2020 13:33:31 +0800 Subject: [PATCH] Correct a typo of the hpe driver This patch changes 'stoping' to 'stopping' in cinder/volume/drivers/hpe/hpe_3par_common.py Change-Id: Ic3c59412e85f1ac4bf583b47842b64d74268f306 --- cinder/volume/drivers/hpe/hpe_3par_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/drivers/hpe/hpe_3par_common.py b/cinder/volume/drivers/hpe/hpe_3par_common.py index b65902705de..8a95fc0cc40 100644 --- a/cinder/volume/drivers/hpe/hpe_3par_common.py +++ b/cinder/volume/drivers/hpe/hpe_3par_common.py @@ -3633,7 +3633,7 @@ class HPE3PARCommon(object): try: self.client.stopRemoteCopy(rcg_name) except Exception as ex: - msg = (_("There was an error stoping remote copy: %s.") % + msg = (_("There was an error stopping remote copy: %s.") % six.text_type(ex)) LOG.error(msg) raise exception.VolumeBackendAPIException(data=msg)