From: Zhansong Gao Date: Thu, 26 Jan 2023 05:19:06 +0000 (+0800) Subject: mds: fix bug of dump_resolve_status X-Git-Tag: v19.0.0~1460^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=03c62b3e8ec2cb3960cbb51cd4ca89c5aad9c84c;p=ceph.git mds: fix bug of dump_resolve_status Signed-off-by: Zhansong Gao --- diff --git a/src/mds/MDCache.cc b/src/mds/MDCache.cc index 101b0b55b37a6..370f05305ca5e 100644 --- a/src/mds/MDCache.cc +++ b/src/mds/MDCache.cc @@ -2653,7 +2653,7 @@ void MDCache::dump_resolve_status(Formatter *f) const { f->open_object_section("resolve_status"); f->dump_stream("resolve_gather") << resolve_gather; - f->dump_stream("resolve_ack_gather") << resolve_gather; + f->dump_stream("resolve_ack_gather") << resolve_ack_gather; f->close_section(); }