From 4312a72c51420243277494095a70b0009ee9500f Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Wed, 1 May 2024 15:49:51 +0200 Subject: [PATCH] pybind/rbd: adjust error message in deep_copy() Signed-off-by: Ilya Dryomov (cherry picked from commit 5986217c79f2fe01e21f6910affa896bd2516f02) --- src/pybind/rbd/rbd.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/rbd/rbd.pyx b/src/pybind/rbd/rbd.pyx index aa07ab172cb92..334f4b63d6560 100644 --- a/src/pybind/rbd/rbd.pyx +++ b/src/pybind/rbd/rbd.pyx @@ -3518,7 +3518,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): -- 2.39.5