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: v19.1.1~408^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0b00132da01e1a56f80b1b4a28cb76036ebfdd98;p=ceph.git pybind/rbd: adjust error message in deep_copy() Signed-off-by: Ilya Dryomov (cherry picked from commit 5986217c79f2fe01e21f6910affa896bd2516f02) --- diff --git a/src/pybind/rbd/rbd.pyx b/src/pybind/rbd/rbd.pyx index e8b7e607c404..df176a410a94 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):