From: Ilya Dryomov Date: Wed, 1 May 2024 13:49:51 +0000 (+0200) Subject: pybind/rbd: adjust error message in deep_copy() X-Git-Tag: testing/wip-vshankar-testing-20240509.053109-debug~21^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5986217c79f2fe01e21f6910affa896bd2516f02;p=ceph-ci.git pybind/rbd: adjust error message in deep_copy() Signed-off-by: Ilya Dryomov --- diff --git a/src/pybind/rbd/rbd.pyx b/src/pybind/rbd/rbd.pyx index e8b7e607c40..df176a410a9 100644 --- a/src/pybind/rbd/rbd.pyx +++ b/src/pybind/rbd/rbd.pyx @@ -3519,7 +3519,7 @@ cdef class Image(object): finally: rbd_image_options_destroy(opts) if ret < 0: - raise make_ex(ret, 'error copying image %s to %s' % (self.name, dest_name)) + raise make_ex(ret, 'error deep copying image %s to %s' % (self.name, dest_name)) @requires_not_closed def list_snaps(self):