]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
pybind/rbd: adjust error message in deep_copy()
authorIlya Dryomov <idryomov@gmail.com>
Wed, 1 May 2024 13:49:51 +0000 (15:49 +0200)
committerIlya Dryomov <idryomov@gmail.com>
Mon, 6 May 2024 08:13:15 +0000 (10:13 +0200)
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
src/pybind/rbd/rbd.pyx

index e8b7e607c40431b08ac7d9bca8d304c9394f5bce..df176a410a940058cc5b95dab4280995ec2fe25e 100644 (file)
@@ -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):