Merge pull request #49882 from zhsgao/dump_resolve_status

mds: fix bug of dump_resolve_status

Reviewed-by: Kotresh HR <khiremat@redhat.com>
Reviewed-by: Dhairya Parmar <dparmar@redhat.com>
Reviewed-by: Rishabh Dave <ridave@redhat.com>
This commit is contained in:
Rishabh Dave 2023-04-01 00:10:05 +05:30 committed by GitHub
commit 75b12e4c00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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();
}