Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

osd/osd_types: fix the osd_stat_t::decode() #12235

Merged
merged 1 commit into from Nov 30, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/osd/osd_types.cc
Expand Up @@ -347,7 +347,7 @@ void osd_stat_t::decode(bufferlist::iterator &bl)
::decode(snap_trim_queue_len, bl);
::decode(num_snap_trimming, bl);
::decode(hb_peers, bl);
uint32_t num_hb_out;
vector<int> num_hb_out;
::decode(num_hb_out, bl);
if (struct_v >= 3)
::decode(op_queue_age_hist, bl);
Expand Down