From: Casey Bodley Date: Tue, 2 Jul 2024 13:07:51 +0000 (-0400) Subject: cls/rgw: bump cls_rgw_reshard_entry decode version to match encode X-Git-Tag: v20.0.0~1604^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c5ea719154ad273d4344eb49c8467293853b6a34;p=ceph.git cls/rgw: bump cls_rgw_reshard_entry decode version to match encode 9302fbb3f5416871c1978af5d45f3bf568c2c190 bumped the version in ENCODE_START() but missed DECODE_START(). i don't think that would cause any decode failures, unless we later raise ENCODE_START's compat_v above 2 Signed-off-by: Casey Bodley --- diff --git a/src/cls/rgw/cls_rgw_types.h b/src/cls/rgw/cls_rgw_types.h index 4f4dd9c1014..3ef1555873d 100644 --- a/src/cls/rgw/cls_rgw_types.h +++ b/src/cls/rgw/cls_rgw_types.h @@ -1369,7 +1369,7 @@ struct cls_rgw_reshard_entry } void decode(ceph::buffer::list::const_iterator& bl) { - DECODE_START(2, bl); + DECODE_START(3, bl); decode(time, bl); decode(tenant, bl); decode(bucket_name, bl);