]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mds: fix bug of dump_resolve_status 49882/head
authorZhansong Gao <zhsgao@hotmail.com>
Thu, 26 Jan 2023 05:19:06 +0000 (13:19 +0800)
committerZhansong Gao <zhsgao@hotmail.com>
Thu, 26 Jan 2023 05:19:06 +0000 (13:19 +0800)
Signed-off-by: Zhansong Gao <zhsgao@hotmail.com>
src/mds/MDCache.cc

index 101b0b55b37a6b89f94d3ac9abeb2e396867c6a4..370f05305ca5e23bdf76ab0858231409751f3efa 100644 (file)
@@ -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();
 }