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: v20.0.0~2009^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=5986217c79f2fe01e21f6910affa896bd2516f02;p=ceph.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 e8b7e607c4043..df176a410a940 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):